11

Mavenに、アーティファクトのタイムスタンプに使用できる組み込みのプラグインがあるかどうかを調べようとしています。アセンブリファイルを作成し、maven-assemblyプラグインを使用して最終的なディストリビューション(jar、docs、scriptsなど)を作成しています。この配布ファイルにdomain_year_month_day.zipという名前を付けたいと思います。タイムスタンプの日の部分を、作成される最終的なzipファイルの最後に追加するにはどうすればよいですか。ありがとう。

4

4 に答える 4

9

maven-timestamp-pluginを使用してプロパティ (例: timestamp) を設定し、後でそれをアセンブリの最終的な名前で使用できます。

<plugin>
   <artifactId>maven-assembly-plugin</artifactId>
   <executions>
       <execution>
           <id>create-assembly</id>
           <phase>package</phase>
           <goals>
               <goal>single</goal>
           </goals>
           <configuration>
               <appendAssemblyId>false</appendAssemblyId>
               <finalName>domain_${timestamp}</finalName>
               <descriptors>
                   <descriptor>src/main/assembly/my-descriptor.xml</descriptor>
               </descriptors>
               <attach>true</attach>
           </configuration>
       </execution>
   </executions>
</plugin>

別の方法として、 GMaven プラグインを使用して Groovy コードを POM に入れることもできます。

<plugin>
  <groupId>org.codehaus.gmaven</groupId>
  <artifactId>gmaven-plugin</artifactId>
  <version>1.3</version>
  <executions>
    <execution>
      <id>set-custom-property</id>
      <phase>initialize</phase>
      <goals>
        <goal>execute</goal>
      </goals>
      <configuration>
        <source>
          def timestamp = new Date().format('MM_dd_yy')
          project.properties.setProperty('timestamp', timestamp)
        </source>
      </configuration>
    </execution>
    <execution><!-- for demonstration purpose -->
      <id>show-custom-property</id>
      <phase>generate-resources</phase>
      <goals>
        <goal>execute</goal>
      </goals>
      <configuration>
        <source>
          println project.properties['timestamp']
        </source>
      </configuration>
    </execution>
  </executions>
</plugin>

プロパティを示すサンプル出力:

$ mvn 生成リソース
[情報] プロジェクトをスキャンしています...
[情報]                                                                         
...
[INFO] --- gmaven-plugin:1.3:execute (set-custom-property) @ Q4081274 ---
[情報]
[INFO] --- gmaven-plugin:1.3:execute (show-custom-property) @ Q4081274 ---
11_02_10
[情報]  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - -------------------------
[情報] ビルド成功
[情報]  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - -------------------------
...

繰り返しますが、後でアセンブリのビルド名でこのプロパティを使用します。

于 2010-11-02T22:57:12.253 に答える
5

Maven でバグがあるよう${maven.build.timestamp}に見えるため、回避策は次のとおりです。

新しい変数を作成します (ここでは「build.timestamp」を選択しました) 。オプションで、次の形式を指定します。

pom.xml

<project>
    ...
    <properties>
        ...
        <build.timestamp>${maven.build.timestamp}</build.timestamp>
        <maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format> 
                     <!-- default is: yyyyMMdd-HHmm -->
    </properties>
    <build>
    ...
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <descriptors>
                    <descriptor>some-assembly.xml</descriptor>
                </descriptors>
            </configuration>
            <executions>
                <execution>
                    <id>make</id>
                    <phase>package</phase>
                    <goals>
                        <goal>assembly</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

...

どこからでもカスタム変数を使用します。

some-assembly.xml

<?xml version="1.0"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>release-${build.timestamp}</id>
    <baseDirectory>/</baseDirectory>
    <includeBaseDirectory>false</includeBaseDirectory>
    <formats>
      <format>zip</format>
    </formats>
    <fileSets>
      <fileSet>
        <directory>${project.build.directory}/${project.artifactId}-${project.version}</directory>
      </fileSet>
    </fileSets>
</assembly>
于 2014-08-07T15:17:37.027 に答える
0

Hudson/Jenkins を使用する場合は、変数 ${BUILD_ID} を使用して、編集するプロパティ ファイルのタイムスタンプを取得できます。

Hudson/Jenkins がサポートするその他の環境変数に関する情報については、こちらをご覧ください: http://wiki.hudson-ci.org/display/HUDSON/Building+a+software+project

于 2013-01-17T15:33:57.657 に答える