我正在使用maven2。我安装了tomcat7。我想配置插件以使用已安装的tomcat7。有人可以指向这样做的链接。
答案 0 :(得分:4)
使用Cargo插件。配置像这样的货物
<profiles>
<profile>
<id>integration</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.0</version>
<configuration>
<!-- Container configuration -->
<container>
<containerId>tomcat6x</containerId>
</container>
<configuration>
<type>existing</type>
<home>/usr/local/apache-tomcat-6.0.18</home>
</configuration>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
我有相同的设置,但我已经在Tomcat6.0.x和Jetty 7.0.16上测试过了。这些链接将有所帮助
远程部署像这样使用(在Tomcat7中不能有所不同)
<configuration>
<!-- Container configuration -->
<container>
<containerId>tomcat6x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.username>admin</cargo.remote.username>
<cargo.remote.password></cargo.remote.password>
<cargo.tomcat.manager.url>http://localhost:8888/manager</cargo.tomcat.manager.url>
</properties>
</configuration>
...
</configuration>
再次参考上面的链接!