0

buildnumber-maven-plugin を使用して、現在の SVN リビジョン番号を戦争のマニフェスト ファイルに追加しようとしました。

pom.xml に次を追加しました。

         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>buildnumber-maven-plugin</artifactId>
            <version>1.1</version>
            <executions>
                <execution>
                    <phase>validate</phase>
                    <goals>
                        <goal>create</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <doCheck>false</doCheck>
                <doUpdate>false</doUpdate>
                <revisionOnScmFailure>0.0.1</revisionOnScmFailure>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.0.2</version>
            <configuration>
                <archive>
                    <manifest>
                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                    </manifest>
                    <manifestEntries>
                        <Implementation-Build>x ${buildNumber}</Implementation-Build>
                    </manifestEntries>
                </archive>
            </configuration>
        </plugin>

しかし、ファイルを展開した後、マニフェスト ファイルは次のようになります。

Manifest-Version: 1.0
Built-By: my.name
Build-Jdk: 1.6.0_33
Implementation-Title: Java EE 6 webapp project
Implementation-Version: 0.0.1-SNAPSHOT
Implementation-Vendor-Id: com.company.my
Implementation-Build: x ${buildNumber}
Created-By: Maven Integration for Eclipse

したがって、${buildNumber}は何らかの理由で評価されません。(また、revisionOnScmFaulureオプションが機能していないようです。(デバッグの理由で「x」を追加しました。)

プロジェクトを maven ビルドとして実行すると、次のエラーが発生します。

"Unknown lifecycle phase "create". You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy."

ただし、目標を create 以外に変更しても問題は解決せず、バリデータ エラーが発生します。

4

1 に答える 1

3

これは、たとえばrexslプロジェクトでどのように機能するかです(pom.xmlを参照)。

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>buildnumber-maven-plugin</artifactId>
            <version>1.1</version>
            <configuration>
                <buildNumberPropertyName>buildNumber</buildNumberPropertyName>
                <doCheck>false</doCheck>
                <doUpdate>false</doUpdate>
                <getRevisionOnlyOnce>true</getRevisionOnlyOnce>
            </configuration>
            <executions>
                <execution>
                    <phase>generate-resources</phase>
                    <goals>
                        <goal>create</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
    <pluginManagement>
        <plugins>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <archive>
                        <manifestEntries>
                            <ReXSL-Version>${project.version}</ReXSL-Version>
                            <ReXSL-Build>${buildNumber}</ReXSL-Build>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>
于 2012-11-19T19:45:45.413 に答える