我最近开始使用cargo-maven2-plugin(org.codehaus.cargo)将WAR工件部署到远程服务器,它似乎运行良好,但有一个例外。一旦将目标文件复制到远程服务器,我似乎无法找到指定目标文件名称的方法。例如,构建的工件名称为“my-war-artifact-2013.10.war”,但是当它部署到服务器时,我希望将其部署为“my-war-artifact.war”。
所有documentation个状态都可以完成,但仅限于使用本地类型时。有没有人这样做或想出办法做到这一点?我迫切需要这种能力!以下是我的POM的相关部分......
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<phase>package</phase>
<goals>
<goal>deployer-redeploy</goal>
</goals>
</execution>
</executions>
<configuration>
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.username>${tomcat.username}</cargo.remote.username>
<cargo.remote.password>${tomcat.password}</cargo.remote.password>
<cargo.tomcat.manager.url>
http://${host}${port}/manager
</cargo.tomcat.manager.url>
</properties>
</configuration>
</configuration>
</plugin>
答案 0 :(得分:2)
在货物配置中添加:
...
<deployables>
<deployable>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<type>war</type>
<properties>
<context>my-war-artifact</context>
</properties>
</deployable>
</deployables>
我目前将其与TomEE结合使用,并且复制到webapps中的目标文件名是由后缀添加的context-tag包含的名称&#34; war&#34;。