Finally, javaee.jar in a Maven repository
It took quite a lot of time, but finally Sun listened to its users and decided to publish Java EE 5 API (the famous javaee.jar archive you find in every Glassfish installation) in a Maven repository (see Ludovic announcement).
Now, creating a maven build for your Java EE 5 project is simpler! Just add
<dependency> <groupid>javaee</groupid> <artifactid>javaee-api</artifactid> <version>5</version> <scope>provided</scope> </dependency>
to your pom.xml file, and you’re done.

No Comments Yet