> but appears into the eclipse console thsi error: > 27/10/08 17:49:46 CET: Missing artifact javax.jms:jms:jar:1.1:compile > 27/10/08 17:49:46 CET: Missing artifact > com.sun.jdmk:jmxtools:jar:1.2.1:compile > 27/10/08 17:49:46 CET: Missing artifact com.sun.jmx:jmxri:jar:1.2.1:compile
As seen here: http://repo1.maven.org/maven2/javax/jms/jms/1.1/ http://repo1.maven.org/maven2/com/sun/jdmk/jmxtools/1.2.1/ http://repo1.maven.org/maven2/com/sun/jmx/jmxri/1.2.1/ There are no JAR files provided by any of these artifacts, only POM files. If you look at the POM files for the first two: http://repo1.maven.org/maven2/javax/jms/jms/1.1/jms-1.1.pom http://repo1.maven.org/maven2/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.pom It provides download links for the Jars. Sun licensing does not permit those jars to be hosted in the Central repo. So, you have to download the Jars and use "mvn install" to put them in your own repo if you need to use them. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
