diff options
author | Olivier Lamy <olamy@apache.org> | 2012-03-31 21:54:49 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-03-31 21:54:49 +0000 |
commit | 5284e5c31244c3dfd44b1dc39aa651e9a60aa110 (patch) | |
tree | 6b9e690cd2cdb28a40d432eedccdce4e079b61cc /archiva-modules/archiva-web/archiva-web-common/pom.xml | |
parent | 49e0e7b486b707aaf7b61f73ca0bb93904d5c1c9 (diff) | |
download | archiva-5284e5c31244c3dfd44b1dc39aa651e9a60aa110.tar.gz archiva-5284e5c31244c3dfd44b1dc39aa651e9a60aa110.zip |
fix svn 1.7 support
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1307915 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-web/archiva-web-common/pom.xml')
-rw-r--r-- | archiva-modules/archiva-web/archiva-web-common/pom.xml | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/archiva-modules/archiva-web/archiva-web-common/pom.xml b/archiva-modules/archiva-web/archiva-web-common/pom.xml index 9713eb9d8..a914cd0c4 100644 --- a/archiva-modules/archiva-web/archiva-web-common/pom.xml +++ b/archiva-modules/archiva-web/archiva-web-common/pom.xml @@ -259,6 +259,7 @@ <activation> <file> <exists>../../../.svn/</exists> + <missing>.svn</missing> </file> </activation> <build> @@ -277,13 +278,54 @@ <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> - <!--providerImplementations> + <providerImplementations> <svn>javasvn</svn> - </providerImplementations--> + </providerImplementations> </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> </plugins> </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> <id>svn-buildnumber</id> |