chrisnc skrev:
It fails on the following dependency:
Missing:
----------
1) javax.xml:jsr173:jar:1.0
Try downloading the file manually from:
http://ftpna2.bea.com/pub/downloads/jsr173.jar
Then, install it using the command:
mvn install:install-file -DgroupId=javax.xml -DartifactId=jsr173 \
-Dversion=1.0 -Dpackaging=jar -Dfile=/path/to/file
Path to dependency:
1) com.sun.tools.xjc.maven2:maven-jaxb-plugin:maven-plugin:1.0
2) com.sun.xml.bind:jaxb-impl:jar:2.0.1
3) javax.xml:jaxb-api:jar:2.0
4) javax.xml:jsr173:jar:1.0
----------
1 required artifact is missing.
for artifact:
com.sun.tools.xjc.maven2:maven-jaxb-plugin:maven-plugin:1.0
from the specified remote repositories:
codehaus.org (http://snapshots.repository.codehaus.org),
central (http://repo1.maven.org/maven2),
tlc-snapshots (http://commons.ucalgary.ca/pub/m2-snapshots),
java.net (https://maven-repository.dev.java.net/nonav/repository),
apache.snapshots (http://people.apache.org/maven-snapshot-repository),
davidkarlsen.com Snapshots (http://www.davidkarlsen.com/m2/)
Looking at the license: http://www.ibiblio.org/maven2/javax/xml/jsr173/1.0/
would it be illegal to distribuate the jar at ibiblio?
Hi.
Don't know if you solved this yet, but it worked for me just adding the
version tag to the plugin information, as below:
<plugin>
<groupId>com.sun.tools.xjc.maven2</groupId>
<artifactId>maven-jaxb-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]