java.net maven repo – JMS artifact missing

Realizing that the Sun’s JARs are not on Maven central due to licensing issues, I added
the following Maven repo to my POM

Yeah, but http://download.java.net/maven/2/javax/ doesn’t have the jms artifact…

The good news is that the JBoss Nexus repository does have it:

<repository>
  <id>repository.jboss.org-public</id>
  <name>JBoss repository</name>
  <url>https://repository.jboss.org/nexus/content/groups/public</url>
</repository>

Leave a Comment