我正在尝试升级现有的maven应用程序以使用tomcat 7.10及更高版本。
在7.8上我使用cargo-maven2-plugin来启动tomcat容器并部署webapp,这很好。
在7.10及更高版本上失败并显示错误:
[WARNING] [talledLocalContainer] 14/04/2011 12:21:43 PM org.apache.tomcat.util.digester.Digester startElement
[WARNING] [talledLocalContainer] SEVERE: Begin event threw exception
[WARNING] [talledLocalContainer] java.lang.ClassNotFoundException: org.apache.catalina.mbeans.ServerLifecycleListener
这是因为这个库已经从7.9中的tomcat中删除了,但我正在使用的货物版本仍然在它的server.xml配置中指定了这个库。
该错误已在货物1.1.0(http://jira.codehaus.org/browse/CARGO-923?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel)
中修复我正在努力研究如何强制maven(或更具体地说是cargo-maven2-plugin)应该使用的货物版本。
我的pom.xml的相关部分如下所示:
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.0.6</version>
<configuration>
<container>
<containerId>tomcat7x</containerId>
<zipUrlInstaller>
<url>http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.12/bin/apache-tomcat-7.0.12.zip</url>
<installDir>${user.home}/java/cargo/</installDir>
</zipUrlInstaller>
</container>
<configuration>
<properties>
<cargo.logging>low</cargo.logging>
<cargo.servlet.port>8280</cargo.servlet.port>
</properties>
</configuration>
</configuration>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
</executions>
</plugin>
问题是,这将始终通过cargo-maven2-plugin版本号使用货物1.6。如果我检查mvnrepository这是可用的最新版本(并且已损坏)。
如果我尝试在配置 - &gt;属性部分中指定core.cargo.version,它似乎没有任何区别。
有什么想法吗?
答案 0 :(得分:1)
我知道这张票很旧但答案对于打开它的人来说很有用。
您可以直接在pom.xml中的插件定义中指定依赖项,从而覆盖插件依赖项的版本,如下例所示。 cargo-maven2-plugin
的版本为1.4.10
,我会覆盖某些依赖项的版本以使用1.4.11
代替。
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.4.10</version>
<configuration>
<container>
<containerId>tomcat7x</containerId>
</container>
</configuration>
<executions>
<execution>
<id>run</id>
<goals>
<goal>start</goal>
</goals>
<phase>pre-integration-test</phase>
</execution>
<execution>
<id>finish</id>
<goals>
<goal>stop</goal>
</goals>
<phase>post-integration-test</phase>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-core-api-generic</artifactId>
<version>1.4.11</version>
</dependency>
<dependency>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-documentation</artifactId>
<version>1.4.11</version>
</dependency>
<dependency>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-daemon-client</artifactId>
<version>1.4.11</version>
</dependency>
<dependency>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-core-api-container</artifactId>
<type>test-jar</type>
<version>1.4.11</version>
</dependency>
</dependencies>
</plugin>