web-dev-qa-db-ja.com

JenkinsでのMavenパラメーターの設定

私はJenkinsを実験しており、Jenkinsがさまざまなプロジェクトビルドのパラメーターを設定できるようにする方法を探しています。通常、これらのすべての属性は、settings.xmlに保存されます(現在、Jenkinsを実行しているユーザー用のsettings.xmlがあり、デフォルトのプロパティとリポジトリが含まれています)。

異なるMavenパラメーターと異なる目標を特定した同じプロジェクトの異なるビルドが必要です。 (コンパイルチェックを頻繁に実行するジョブ、1時間ごとにアプリをテストサーバーに展開するジョブ、ステージングにリリースしてから製品化するジョブ)

Jenkinsでパラメーター化ビルドを作成する最良の方法は何ですか?

15
empire29

あなたのためのいくつかのオプションがあります。これが私が使っているものです:

ビルドでプロファイルを作成します。

<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 KB at 0.0 KB/sec)ダウンロード: 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.0 KB /秒で0 B)

Pomのデフォルト部分をパラメータ化できます(デフォルト値を直接設定し、実行プロパティでオーバーライドします)

最後に、環境変数 Parameterized Build または Parameterized 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

または、This build is parameterizedセクションでtestngVersion = 6.0を設定してジェンキンスで

18
Andrzej Jozwik