Maven2 plugin Cargo Tomcat
Bonjour,
J'aimerai déployer mon application web en utilisant le plugin Cargo pour Maven.
Or lorsque je lance la commande
J'ai un "Build Error" avec comme message:
Citation:
Only local containers can be started.
Qu'est-ce que ça veut dire ? En plus mon conteneur qui est Tomcat, est bien local.
Voici mon fichier pom.xml:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<container>
<containerId>tomcat5x</containerId>
<home>D:/APPL/apache-tomcat-5.5.25/</home>
<output>
${project.build.directory}/container.log
</output>
<append>false</append>
</container>
<configuration>
<type>existing</type>
<home>D:/APPL/apache-tomcat-5.5.25/</home>
</configuration>
</configuration>
</plugin> |
Merci pour votre aide,
Michael