我正在调查Maven Wagon Plugin以尝试将一些工件上传到远程UNC服务器共享(\\servername\share\directory\to\put\to
),并且我已将其配置为在POM中如此工作:
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-file</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-3</version>
<executions>
<execution>
<id>upload-jar-to-folder</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
</goals>
</execution>
</executions>
<configuration>
<fromDir>${project.build.directory}</fromDir>
<includes>*</includes>
<url>file://localhost///${servername}/${sharename}</url>
<toDir>directory/to/put/artifact</toDir>
</configuration>
</plugin>
...
</build>
当我传入-Dservername=x -Dsharename=y
时,这对于一个服务器 非常有用 ,但是如何将其扩展为可以为QA或Prod运行部署我有多个服务器要部署到哪里?
我已经考虑(并编写)了一个脚本来多次运行mvn wagon:upload -Penvironment#
- 每个服务器一次 - 但这对我来说似乎有缺陷。如果我正在炮轰一个脚本来处理这个过程,我也可以编写整个部署的脚本。然而,这剥夺了Wagon(和Maven)的实用性......
有没有办法为一个目标运行多个<executions>
?例如,当我运行wagon:upload
?
mvn deploy -Pqa
个任务
答案 0 :(得分:3)
如果要使用多个配置文件,可以使用:mvn deploy -Denv=qa
并触发此属性上的某些配置文件,并在配置文件中定义服务器的配置。对于这种配置文件激活,请查看
http://maven.apache.org/guides/introduction/introduction-to-profiles.html
并搜索
-Denvironment =测试
这是一个示例POM,它在一个版本中执行两次maven-antrun-plugin的执行:
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.stackoverflow</groupId>
<artifactId>q5328617</artifactId>
<version>0.0.1-SNAPSHOT</version>
<profiles>
<profile>
<activation>
<property>
<name>env</name>
<value>qa</value>
</property>
</activation>
<id>qa1</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>qa1</id>
<phase>test</phase>
<configuration>
<tasks>
<echo level="info">Executing qa1</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<profile>
<activation>
<property>
<name>env</name>
<value>qa</value>
</property>
</activation>
<id>qa2</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>qa2</id>
<phase>test</phase>
<configuration>
<tasks>
<echo level="info">Executing qa2</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>