Bonjour,
Voilà mon problème en utilisant maven 2.2.1, jdk1.6.
j'ai un projet multi-module :
-parent
-web
-api
Dans le pom.xml du parent, je définis bien les infos de mon serveur nexus dans le tag distributionManagement, en rapport avec le server définit dans le settings xml.
Le goal mvn:deploy fonctionne très bien.. le release:prepare aussi.. mais le release:perform ne se termine pas, voici l'erreur :
[INFO] [INFO] Failed to configure plugin parameters for: org.apache.maven.plugins:maven-deploy-plugin:2.4
[INFO]
[INFO] check that the following section of the pom.xml is present and correct:
[INFO]
[INFO] <distributionManagement>
[INFO] <!-- use the following if you're not using a snapshot version. -->
[INFO] <repository>
[INFO] <id>repo</id>
[INFO] <name>Repository Name</name>
[INFO] <url>scp://host/path/to/repo</url>
[INFO] </repository>
[INFO] <!-- use the following if you ARE using a snapshot version. -->
[INFO] <snapshotRepository>
[INFO] <id>repo</id>
[INFO] <name>Repository Name</name>
[INFO] <url>scp://host/path/to/repo</url>
[INFO] </snapshotRepository>
[INFO] </distributionManagement>
[INFO]
[INFO] Cause: Class 'org.apache.maven.artifact.repository.ArtifactRepository' cannot be instantiated
Pourtant, ce tag est bien présent.. et commité, et taggé...
Merci de votre aide !
Partager