相同的部署在Windows和Linux上正常工作 - 但是使用teamcity及其内置的maven我收到错误。本地部署,错误是:
容器配置目录 " / BuildAgent /工作/ 68d4a71c8dc5cfd9 /目标/货物/配置/ tomcat8x" 不存在。请在尝试之前配置容器 执行任何本地部署。
pom的相关部分如下所示:
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.4.8</version>
<configuration>
<container>
<containerId>tomcat8x</containerId>
<home>${env.CATALINA_HOME}</home>
</container>
<configuration>
<type>existing</type>
<home>${env.CATALINA_HOME}</home>
</configuration>
<deployables>
<deployable>
<groupId>com.myapp</groupId>
<artifactId>ROOT</artifactId>
<type>war</type>
<properties>
<context>${project.build.finalName}</context>
</properties>
</deployable>
</deployables>
<deployer>
<type>installed</type>
</deployer>
</configuration>
</plugin>
我是否错过了ubuntu所需的pom部分? teamcity和vanilla maven有什么不同吗?我在两种环境中都使用相同版本的maven。
答案 0 :(得分:2)
在TeamCity外部的Linux机器上执行部署时,您的部署是否有效?
${env.CATALINA_HOME}
是否正确定义了?
我猜是${env.CATALINA_HOME}
指的是错误的地方