在詹金斯设置Maven参数

时间:2012-02-27 20:02:07

标签: maven parameters build jenkins

我正在试验Jenkins,我正在寻找一种方法来允许Jenkins为不同的项目构建设置参数。通常所有这些属性都存储在settings.xml中(我目前有一个用于运行Jenkins的用户的settings.xml,其中包括默认属性和我的存储库)。

我想拥有同一项目的不同构建,这些构建具有不同的Maven参数和不同的目标。 (有一个经常运行编译检查的作业,另一个每小时将应用程序部署到测试服务器,另一个用于释放到分段然后生成)

在Jenkins中创建参数化构建的最佳方法是什么?

1 个答案:

答案 0 :(得分:18)

您可以选择一些选项。这是我正在使用的:

在您的构建中创建配置文件。

<profile>
    <activation>
        <file>
            <exists>findbugs-exclude.xml</exists>
        </file>
    </activation>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
                <configuration>
                    <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
                </configuration>
            </plugin>
        </plugins>
    </build>
</profile>
<profile>
    <id>package</id>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                            <overWriteReleases>false</overWriteReleases>
                            <overWriteSnapshots>false</overWriteSnapshots>
                            <overWriteIfNewer>true</overWriteIfNewer>
                            <includeScope>runtime</includeScope>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</profile>

您可以在jenkins clean install -P package中定义 - 用于包任务,或clean install用于正常构建

从命令行直接将参数放入pom:

Maven电话:

mvn clean install -Dparameter.one=ONE -Dparameter.two=TWO

POM:

<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.test</groupId>
    <artifactId>test</artifactId>
    <version>1.0.0</version>
    <name>test</name>
    <properties>
        <testng.version>6.4</testng.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

如果你运行它,通常会使用testng版本6.4。但如果你运行它: 将使用mvn clean install -Dtestng.version=6.3.1 testng版本6.3.1。

  

下载:   http://repo.maven.apache.org/maven2/org/testng/testng/6.3.1/testng-6.3.1.pom   下载:   http://repo.maven.apache.org/maven2/org/testng/testng/6.3.1/testng-6.3.1.pom   (0 B,0.0 KB /秒)下载:   http://repo.maven.apache.org/maven2/org/testng/testng/6.3.1/testng-6.3.1.jar   下载:   http://repo.maven.apache.org/maven2/org/testng/testng/6.3.1/testng-6.3.1.jar   (0 B,0.0 KB /秒)

您可以参数化pom的默认部分(直接设置默认值并通过执行属性覆盖它)

最后,您可以使用环境变量Parameterized BuildParameterized Trigger Plugin

最后一个示例版本的更改:

<dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>${env.testngVersion}</version>
    <scope>test</scope>
</dependency>

在bash中你可以打电话:

export testngVersion=6.0
mvn clean install

或者在jenkins中通过在This build is parameterized部分

中设置testngVersion = 6.0