我們的項目有一個很好的黑客(雖然我猜有更好的方法來做到這一點),以將修訂信息嵌入到工件(jar等),當我們使用svn。如何嵌入版本信息使用mercurial和maven(和svn)
現在我們已經遷移到了mercurial,並且我們想要一個類似的東西,但是在我開始使用mercurial進行類似的攻擊之前,我想知道是否有更好的方法來做到這一點。
感謝您的回答!
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-classes</phase>
<id>svninfo</id>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>svn</executable>
<arguments>
<argument>info</argument>
<argument>../</argument>
<argument>></argument>
<argument>target/some-project/META-INF/svninfo.txt</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
'hg parent'而不是'hg log -r .'怎麼樣? – Alex 2014-11-28 17:55:02