0

Mavenに奇妙な問題があります。フィルタリング オプションを使用して、いくつかのバージョン情報をプロパティ ファイルに入れています。次に、それをjarファイルに含めて、「ヘルプ/バージョン情報」で役立つ情報を教えてくれるようにします。私が抱えている問題は、jar ファイルのバージョンが以前のバージョンであることです。したがって、たとえばビルドを 0930 で実行し、別のビルドを 0940 で実行すると、0940 で生成された jar 内のプロパティ ファイルのバージョンのビルド時間は 0930 になります。私は buildNumber プラグインも使用していますが、これは有効にするかどうかに関係なく、問題は存在します。

さらに奇妙なのは、Eclipse 内からビルドを実行してプログラムを実行すると、「古い」ファイルが help/about に表示されますが、Eclipse プロジェクトを「更新」(F5) してプログラムを再実行すると、 、正しいバージョンを取得します。では、maven が何らかの形で Eclipse バージョンを使用している可能性はありますか? また、Eclipse を最新バージョンにするために「リフレッシュ」する必要があるのはなぜですか。

とにかく、私の pom.xml は

    <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>

    <scm>
        <url>scm:git:https://github.com/gregryork/DayOneViewer</url>
        <developerConnection>scm:git:https://github.com/gregryork/DayOneViewer</developerConnection>

        <tag>master</tag>
    </scm>


    <groupId>uk.co.gregreynolds</groupId>
    <artifactId>dayone</artifactId>
    <version>0.0.2-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>dayone</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <version.template.file>src/main/resources/uk/co/gregreynolds/dayone/Version.properties.template</version.template.file>
        <version.file>src/main/resources/uk/co/gregreynolds/dayone/Version.properties</version.file>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>buildnumber-maven-plugin</artifactId>
                <version>1.0</version>
                <executions>
                    <execution>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>create</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <doCheck>false</doCheck>
                    <doUpdate>false</doUpdate>
                    <revisionOnScmFailure>true</revisionOnScmFailure>
                    <format>{0,date,yyyy-MM-dd_HH-mm}_{1}</format>
                    <items>
                        <item>timestamp</item>
                        <item>${user.name}</item>
                    </items>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>uk.co.gregreynolds.dayone.DayOneViewer</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>com.google.code.maven-replacer-plugin</groupId>
                <artifactId>maven-replacer-plugin</artifactId>
                <version>1.4.0</version>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>replace</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <file>${version.template.file}</file>
                    <outputFile>${version.file}</outputFile>
                    <replacements>
                        <replacement>
                            <token>@buildnumber@</token>
                            <value>${buildNumber}</value>
                        </replacement>
                        <replacement>
                            <token>@buildtime@</token>
                            <value>${maven.build.timestamp}</value>
                        </replacement>
                        <replacement>
                            <token>@pomversion@</token>
                            <value>${project.version}</value>
                        </replacement>
                    </replacements>
                </configuration>
            </plugin>

        </plugins>

        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-site-plugin</artifactId>
                    <version>3.3</version>
                    <dependencies>
                        <dependency><!-- add support for ssh/scp -->
                            <groupId>org.apache.maven.wagon</groupId>
                            <artifactId>wagon-ssh</artifactId>
                            <version>1.0</version>
                        </dependency>
                    </dependencies>
                </plugin>
                <!--This plugin's configuration is used to store Eclipse m2e settings 
                    only. It has no influence on the Maven build itself. -->
                <plugin>
                    <groupId>org.eclipse.m2e</groupId>
                    <artifactId>lifecycle-mapping</artifactId>
                    <version>1.0.0</version>
                    <configuration>
                        <lifecycleMappingMetadata>
                            <pluginExecutions>
                                <pluginExecution>
                                    <pluginExecutionFilter>
                                        <groupId>
                                            com.google.code.maven-replacer-plugin
                                        </groupId>
                                        <artifactId>
                                            maven-replacer-plugin
                                        </artifactId>
                                        <versionRange>
                                            [1.4.0,)
                                        </versionRange>
                                        <goals>
                                            <goal>replace</goal>
                                        </goals>
                                    </pluginExecutionFilter>
                                    <action>
                                        <ignore></ignore>
                                    </action>
                                </pluginExecution>
                            </pluginExecutions>
                        </lifecycleMappingMetadata>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.googlecode.plist</groupId>
            <artifactId>dd-plist</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>org.swinglabs</groupId>
            <artifactId>swingx</artifactId>
            <version>1.6.1</version>
        </dependency>
    </dependencies>

    <distributionManagement>
        <site>
            <id>langurmonkey.no-ip.org</id>
            <url>scp://langurmonkey.no-ip.org/var/www/dayone/</url>
        </site>
    </distributionManagement>
</project>
4

1 に答える 1

0

最初に、次のようにリソースのフィルタリングを有効にします。

  <build>
    <resources>
      <resource>
        <directory>src/main/resources/</directory>
        <filtering>true</filtering>
      </resource>

    </resources>
    ...
  </build>

これにより、 のフォルダ (およびサブフォルダ) にあるすべてのファイルのフィルタリングが有効になりますsrc/main/resources。限られた数のファイルに対してのみフィルタリングが必要な場合があります。そのような状況では、それらのファイルをサブフォルダーに入れて、上記の構成を適切に変更してください。src/main/resources次に、次のように必要なすべての情報を含むプロパティ ファイル (フォルダ内) を定義します。

version=${project.version} buildNumber=${buildNumber} buildTime=${maven.build.timestamp}

さらに、次のようにbuildnumber-maven-pluginの構成を行います。

 <build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>buildnumber-maven-plugin</artifactId>
            <version>1.2</version>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>create</goal>
                </goals>
             </execution>
           </executions>
            <configuration>
                <doCheck>false</doCheck>
                <doUpdate>false</doUpdate>
                <revisionOnScmFailure>UNKNOWN</revisionOnScmFailure>
                <format>{0,date,yyyy-MM-dd_HH-mm}_{1}</format>
                <items>
                    <item>timestamp</item>
                    <item>${user.name}</item>
                </items>
            </configuration>
        </plugin>

その後、そのような単純なシナリオでは必要のない maven-replacer-plugin の使用を簡単に削除できます。

于 2013-08-18T13:56:09.157 に答える