我正在研究Maven Wagon Plugin尝试将一些 Artifact 上传到远程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任务?

最佳答案

如果要使用多个概要文件,则可以使用:mvn deploy -Denv=qa并在此属性上触发一些概要文件,然后在概要文件中定义服务器的配置。对于这种配置文件激活,请查看

http://maven.apache.org/guides/introduction/introduction-to-profiles.html

并搜索

-环境=测试

这是一个示例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>

10-06 07:06