J'essaie de créer un projet Maven pour tester certains logiciels de test - Arquillian.Dépendance maven manquante à l'aide de la configuration de nexus
J'ai configuré nexus et ajouté les dépôts jboss en bas du groupe public.
Quand je lance mvn test
i obtenir cette erreur:
Missing:
----------
1) com.sun.istack:istack-commons-runtime:jar:1.1-SNAPSHOT
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=com.sun.istack -DartifactId=istack-commons-runtime -Dversion=1.1-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=com.sun.istack -DartifactId=istack-commons-runtime -Dversion=1.1-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) org.jboss.arquillian.sandbox.showcase:arquillian-sandbox-showcase-jsf:jar:1.0.0-SNAPSHOT
2) org.jboss.jbossas:jboss-as-client:pom:6.0.0.20100721-M4
3) org.jboss.jbossas:jboss-as-iiop:jar:client:6.0.0.20100721-M4
4) org.jboss.jbossts:jbossjts:jar:4.11.0.Final
5) org.jboss.ws.native:jbossws-native-core:jar:3.3.0.CR1.SP2
6) com.sun.xml.ws:jaxws-rt:jar:2.2
7) com.sun.xml.ws:policy:jar:2.0-b01
8) com.sun.istack:istack-commons-runtime:jar:1.1-SNAPSHOT
J'ai vérifié le dépôt Maven 2 java.net et il est certainement there. Cependant, lorsque je navigue vers mon groupe public nexus local, il n'est pas là.
Comment puis-je résoudre ce problème? Et quelle est la cause de ce problème? Je suis dans la tête avec cela, car je suis plus habitué à utiliser fourmi + lierre. La sortie complète de mvn est here.
Je ne sais pas si cette question est importante, dans l'ordre de mon groupe local de nexus, maven central est au-dessus de java.net m2. Maven central a un paquet org/sun/istack/mais le paquet istack-commons-runtime n'existe pas. – JavaRocky