Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java.net maven repo - JMS artifact missing

I just created a new Maven project using the default archetype and added the following dependency to my POM file.

<dependencies>
  <dependency>
    <groupId>javax.jms</groupId>
    <artifactId>jms</artifactId>
    <version>1.1</version>
    <scope>compile</scope>
  </dependency>
</dependencies>

Realizing that the Sun's JARs are not on Maven central due to licensing issues, I added the following Maven repo to my POM (I know this is bad practice though and that it needs to be added to a settings.xml)

<repositories>
  <repository>
    <id>Repo ID</id>
    <layout>default</layout>
    <name>Java.net Maven repo</name> 
    <releases>
      <enabled>true</enabled>
    </releases>
    <url>http://download.java.net/maven/2/</url>
  </repository>
</repositories>

I still see this error in my POM file.

"Missing artifact javax.jms:jms:jar:1.1:compile"

Does anyone here know what else needs to be done in addition to the config I already have?

like image 229
Phanindra Avatar asked Sep 01 '10 23:09

Phanindra


3 Answers

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>
like image 96
Pascal Thivent Avatar answered Oct 31 '22 13:10

Pascal Thivent


If you just want the jms artifact and don't want to add the whole repo, you can do the following:

wget https://repository.jboss.org/nexus/content/groups/public/javax/jms/jms/1.1/jms-1.1.jar
mvn -e install:install-file -Dfile=./jms-1.1.jar -DartifactId=jms -DgroupId=javax.jms -Dversion=1.1 -Dpackaging=jar
like image 39
Florian Avatar answered Oct 31 '22 12:10

Florian


In fact the real solution for this issue is to use the jms-api-1.1-rev-1.jar artifact available on Maven Central : http://search.maven.org/#artifactdetails%7Cjavax.jms%7Cjms-api%7C1.1-rev-1%7Cjar

like image 6
Sébastien Deleuze Avatar answered Oct 31 '22 13:10

Sébastien Deleuze