mirror of https://github.com/apache/archiva.git
fix buildnumber plugin with svn 1.7 wc
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1354203 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f68a05a499
commit
4890829538
|
@ -276,8 +276,10 @@
|
|||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<doCheck>false</doCheck>
|
||||
<doUpdate>false</doUpdate>
|
||||
<!-- Use committed revision so it does not change every time svn update is run -->
|
||||
<useLastCommittedRevision>true</useLastCommittedRevision>
|
||||
<!-- default revision number if unavailable -->
|
||||
<revisionOnScmFailure>??????</revisionOnScmFailure>
|
||||
<providerImplementations>
|
||||
<svn>javasvn</svn>
|
||||
</providerImplementations>
|
||||
|
@ -286,7 +288,12 @@
|
|||
<dependency>
|
||||
<groupId>com.google.code.maven-scm-provider-svnjava</groupId>
|
||||
<artifactId>maven-scm-provider-svnjava</artifactId>
|
||||
<version>2.0</version>
|
||||
<version>2.0.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.tmatesoft.svnkit</groupId>
|
||||
<artifactId>svnkit</artifactId>
|
||||
<version>1.7.5</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
@ -315,8 +322,10 @@
|
|||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<doCheck>false</doCheck>
|
||||
<doUpdate>false</doUpdate>
|
||||
<!-- Use committed revision so it does not change every time svn update is run -->
|
||||
<useLastCommittedRevision>true</useLastCommittedRevision>
|
||||
<!-- default revision number if unavailable -->
|
||||
<revisionOnScmFailure>??????</revisionOnScmFailure>
|
||||
<providerImplementations>
|
||||
<svn>javasvn</svn>
|
||||
</providerImplementations>
|
||||
|
@ -325,39 +334,6 @@
|
|||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>non-canonical-buildnumber</id>
|
||||
<activation>
|
||||
<file>
|
||||
<missing>.svn</missing>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>buildnumber-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>create</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<doCheck>false</doCheck>
|
||||
<doUpdate>false</doUpdate>
|
||||
<format>NON-CANONICAL_{0,date,yyyy-MM-dd_HH-mm}_{1}</format>
|
||||
<items>
|
||||
<item>timestamp</item>
|
||||
<item>${user.name}</item>
|
||||
</items>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue