mirror of https://github.com/apache/archiva.git
fix svn 1.7 support
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1307915 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49e0e7b486
commit
5284e5c312
|
@ -259,6 +259,7 @@
|
||||||
<activation>
|
<activation>
|
||||||
<file>
|
<file>
|
||||||
<exists>../../../.svn/</exists>
|
<exists>../../../.svn/</exists>
|
||||||
|
<missing>.svn</missing>
|
||||||
</file>
|
</file>
|
||||||
</activation>
|
</activation>
|
||||||
<build>
|
<build>
|
||||||
|
@ -277,13 +278,54 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<doCheck>false</doCheck>
|
<doCheck>false</doCheck>
|
||||||
<doUpdate>false</doUpdate>
|
<doUpdate>false</doUpdate>
|
||||||
<!--providerImplementations>
|
<providerImplementations>
|
||||||
<svn>javasvn</svn>
|
<svn>javasvn</svn>
|
||||||
</providerImplementations-->
|
</providerImplementations>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.code.maven-scm-provider-svnjava</groupId>
|
||||||
|
<artifactId>maven-scm-provider-svnjava</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.tmatesoft.svnkit</groupId>
|
||||||
|
<artifactId>svnkit</artifactId>
|
||||||
|
<version>1.7.4-rc4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.regnis.q.sequence</groupId>
|
||||||
|
<artifactId>sequence-library</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
<pluginRepositories>
|
||||||
|
<!-- svnkit 1.7 -->
|
||||||
|
<pluginRepository>
|
||||||
|
<id>maven.tmatesoft.com.releases</id>
|
||||||
|
<url>http://maven.tmatesoft.com/content/repositories/releases</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>oss.sonatype.snapshots</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
</profile>
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>svn-buildnumber</id>
|
<id>svn-buildnumber</id>
|
||||||
|
|
Loading…
Reference in New Issue