5
我使用buildnumber-maven-plugin
,我需要從svn獲取項目的內部版本號。我的pom.xml:如何使用SVN和Maven構建編號?
<scm>
<connection>
scm:svn:https://username:[email protected]_to_repositiry
</connection>
</scm>
<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>
<providerImplementations>
<svn>javasvn</svn>
</providerImplementations>
</configuration>
<dependencies>
<dependency>
<groupId>com.google.code.maven-scm-provider-svnjava</groupId>
<artifactId>maven-scm-provider-svnjava</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>org.tmatesoft.svnkit</groupId>
<artifactId>svnkit</artifactId>
<version>1.7.4-v1</version>
</dependency>
</dependencies>
</plugin>
但我有錯誤,當我打包項目:
[ERROR] Failed to execute goal org.codehaus.mojo:buildnumber-maven-plugin:1.1:create (default)on project myproject: Cannot get the revision information from the scm repository : [ERROR] Exception while executing SCM command. svn: E155021: This client is too old to work with the working copy at [ERROR] 'D:\projects\myproject' (format {1}).
雖然我使用TortoiseSVN 1.8.2!
我讀到buildnumber-maven-plugin
與TortoiseSVN 1.7和更老的行爲。 如何使用SVN和Maven構建編號?
另外,還有更新版本的buildnumber-maven-plugin可用:版本1.2。確保svnkit和buildnumber-maven-plugin版本都是最新的。 –
感謝大家的回答!有用! – RuF
@ user3186861隨時可以接受答案;) – Thomas