11

我正在尝试在单个 Jenkins 作业中构建多个 Maven 配置文件。mvn -Pdev install每个配置文件都会更改一些代码,然后通过在命令行中执行then创建一个 jar mvn -Pprod install(根据 Maven usingmvn -Pdev,prod install应该可以工作,但它对我不起作用)。这是我项目中的两个配置文件pom.xml

<profiles>   
 <!-- prod profile -->
   <profile>
    <id>prod</id>
     <build>
      <plugins> 

          <plugin>
                <groupId>com.google.code.maven-replacer-plugin</groupId>
                <artifactId>replacer</artifactId>
                <version>1.5.2</version>

                <executions>
                    <execution>                    
                        <phase>process-resources</phase>
                        <goals>
                            <goal>replace</goal>
                        </goals>
                    </execution>
                </executions>

                <configuration>

                         <file>src/main/java/com/IQzone/android/configuration/AbstractHoldingRefreshable.java</file>
                    <replacements>
                        <replacement>
                            <token>TrUe</token>
                            <value>TOAST_SWITCH</value>
                        </replacement>
                    </replacements>

                </configuration>

            </plugin>

         <plugin>
           <artifactId>maven-jar-plugin</artifactId>
           <executions>
             <execution>
               <phase>package</phase>
               <goals>
                 <goal>jar</goal>
               </goals>
               <configuration>
                 <classifier>prod</classifier>
               </configuration>
             </execution>
           </executions>
         </plugin>
       </plugins>
     </build>
   </profile>


 <!-- dev profile -->
   <profile>
     <id>dev</id>
     <build>
        <plugins>

            <plugin>
                <groupId>com.google.code.maven-replacer-plugin</groupId>
                <artifactId>replacer</artifactId>
                <version>1.5.2</version>

                <executions>
                    <execution>                    
                        <phase>process-resources</phase>
                        <goals>
                            <goal>replace</goal>
                        </goals>
                    </execution>
                </executions>

                <configuration>

                    <file>src/main/java/com/IQzone/android/configuration/AbstractHoldingRefreshable.java</file>
                    <replacements>
                        <replacement>
                            <token>TOAST_SWITCH</token>
                            <value>TrUe</value>
                        </replacement>
                    </replacements>

                </configuration>

            </plugin>

            <!-- build project with JAVA 1.6 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>


         <plugin>
           <artifactId>maven-surefire-plugin</artifactId>
           <configuration>
             <skip>true</skip>
           </configuration>
         </plugin>
         <plugin>
           <artifactId>maven-jar-plugin</artifactId>
           <executions>
             <execution>
               <phase>package</phase>
               <goals>
                 <goal>jar</goal>
               </goals>
               <configuration>
                 <classifier>dev</classifier>
               </configuration>
             </execution>
           </executions>
         </plugin>



       </plugins>
     </build>
   </profile>
 </profiles>

我将如何设置 Jenkins 以在构建工作时自动为单个 Jenkins 工作构建这两个配置文件?把这两个罐子都放进神器里?我对 Jenkins 的了解很少,网上也没有太多关于这方面的信息。

4

4 回答 4

16

您可以创建一个 Jenkins 矩阵作业。矩阵作业允许在更改设置的情况下运行相同的作业(在您的情况下:字符串)。

每个更改的设置称为一个轴。在您的情况下,您将创建一个包含两个值的字符串轴:dev 和 prod。

这样你的工作就会运行两次,两个值。

但是:您对个人资料的使用是危险的。由于用于运行构建的配置文件未编入您的工件中,因此您打破了 Maven 的“一个源修订应始终导致完全相同的目标工件”合同(请参阅: http: //www.blackbuild.com/how-真正使用 maven-profiles-without-endangering-your-karma/以获得更详细的解释)

考虑使用分类器(-dev 和 -prod)创建两个不同的工件,甚至更好:创建两个单独的构建模块,每个模块只创建一个目标工件。

于 2014-03-02T13:11:00.853 回答
11

在 Maven 中,如果您使用mvn -Pdev,prod,那么您将在一个命令中同时激活两个配置文件。

似乎您想要 2 次不同的命令运行,即您可以通过执行 2 次构建在命令行上实现的目标:

mvn -Pdev install; mvn -Pprod install

在詹金斯中,您可以通过以下任一方式实现此目的

  • 一项自由风格的项目工作(由 2 个 shell 构建器运行mvn -P$PROFILE install任务)
  • 2 个 Maven 类型的作业(您可以使用“在构建其他项目后构建”一个接一个地链接)。
于 2013-08-10T06:10:25.993 回答
2

除了 Matrix 作业和自由式作业中的多个 maven 调用之外,还有另一种方法:Run top-level Maven targets作为预构建步骤并通过 maven jenkins 插件运行其他命令。

通过提供-Dmaven.repo.local=/${whatever-it-is}/${EXECUTOR_NUMBER}.

有关矩阵作业等的详细信息,请参阅其他答案。

于 2017-05-05T21:55:50.117 回答
0

您可以通过为每个执行设置不同的执行ID然后触发命令来做到这一点

mvn -Pdev,prod clean package install

于 2015-08-05T00:51:02.903 回答