【发布时间】:2015-03-02 19:38:39
【问题描述】:
我有一个项目,其 Maven Cargo 插件配置如下所示。当我运行mvn cargo:redeploy 时,它将应用程序的当前版本部署到AAA.BBB.CCC.DDD 的服务器。
现在我想添加第二个服务器,比如EEE.FFF.GGG.HHH。 EEE.FFF.GGG.HHH 将是生产服务器,AAA.BBB.CCC.DDD - 开发/测试阶段。
是否可以使用mvn cargo:redeploy 将应用程序部署到不同的服务器(生产和测试,EEE.FFF.GGG.HHH 和AAA.BBB.CCC.DDD)?如果是,我应该如何修改 Cargo 下面的插件配置?
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>my-product</artifactId>
<packaging>war</packaging>
<version>[...]</version>
<name>my-product</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<powermock.version>1.5</powermock.version>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.3.3</version>
<configuration>
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.username>user name</cargo.remote.username>
<cargo.remote.password>password</cargo.remote.password>
<cargo.hostname>AAA.BBB.CCC.DDD</cargo.hostname>
<cargo.protocol>http</cargo.protocol>
<cargo.servlet.port>8080</cargo.servlet.port>
</properties>
</configuration>
<!-- Deployer configuration -->
<deployer>
<type>remote</type>
</deployer>
<deployables>
<deployable>
<groupId>com.mycompany</groupId>
<artifactId>my-product</artifactId>
<type>war</type>
</deployable>
</deployables>
</configuration>
</plugin>
</plugins>
</build>
【问题讨论】:
-
使用
配置中的执行应该是可能的。您可以添加多个执行,只需确保它们具有不同的 ID。 pom 参考:maven.apache.org/guides/introduction/… 包含一些示例。
标签: maven maven-3 maven-cargo cargo-maven2-plugin