So far we have been manually downloading the jars and deploying to our maven repo with custom group/artifact ids. I would like to avoid that. So my question is
My main interest is in the APIs listed here for Java EE 6 and here for Java EE 5, each one as a separate artifact
Here is the Oracle mvn repository information from where you can download Java EE 6 artifacts.
Most JSR and Java EE artifacts have artifactIds starting with javax
E.g. the dependency for JSR-330 is this:
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
Most standard APIs are available in the central repo and hence can be found by mvnrepository.com.
Or you can just browse the javax
directory of your maven mirror of choice. Here's javax on ibiblio.org
Sun / Oracle Java API's that are not in central are usually in the download.java.net maven repo
Below are the official repository and artifact id's for Java EE 5 and 6
Java EE 5 : http://download.java.net/maven/2/javaee/javaee-api/5/
Java EE 6 : http://repo1.maven.org/maven2/javax/javaee-api/6.0/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With