On 7/10/06, Markus Wolf <[EMAIL PROTECTED]> wrote:
are there any recommendations for groupId and artifactId for Java EE Specs available? On the website-guides there are only EJB3 / Persistence recommendations, but this does not include the JEE Annotations required to deploy something to Glassfish using annotations (e.g. @EJB or @PersistenceContext).
Isn't that in javax.persistence? There is a Maven 1 repo available at java.net, you can use it with m2 by saying <layout>legacy</layout> in the repository element. * https://maven-repository.dev.java.net/repository/ (And persistence-api-1.0.jar which seems to contain PersistenceContext, is here: https://maven-repository.dev.java.net/repository/javax.persistence/jars/ .)
If there are no recommendations, what about this: groupId: javax.jee (maybe javax.j2ee) artifactId: jee (maybe even j2ee) version: 5.0
If the above isn't what you're looking for, How about javaee ? Sun uses it in the URL: http://java.sun.com/javaee/ The '2' is out now, it's just Java EE. :) HTH, -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
