Thursday, 19 November 2009

javaee.jar Maven 2

The Java 5 EE API jar file is available in the Java.Net repository here:

http://download.java.net/maven/1/

To use this in your pom file:

<repositories>
<repository>
<id>java.net</id>
<name>Java.Net Repository</name>
<url>http://download.java.net/maven/1//</url>
<!-- Maven 1 layout -->
<layout>legacy</layout>
</repository>
</repositories>

then:

<dependency>
<groupId>javaee</groupId>
<artifactId>javaee-api</artifactId>
<version>5</version>
<scope>provided</scope>
</dependency>

No comments:

Links