2010-09-20 14:24:30 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>scm-plugins</artifactId>
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
2010-12-31 12:21:49 +01:00
|
|
|
<version>1.0-M5</version>
|
2010-09-20 14:24:30 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-svn-plugin</artifactId>
|
2010-12-31 12:21:49 +01:00
|
|
|
<version>1.0-M5</version>
|
2010-09-20 14:24:30 +02:00
|
|
|
<name>scm-svn-plugin</name>
|
2010-12-01 14:36:52 +01:00
|
|
|
<url>https://bitbucket.org/sdorra/scm-manager</url>
|
|
|
|
|
<description>Plugin for the version control system Subversion</description>
|
2010-09-20 14:24:30 +02:00
|
|
|
|
2010-09-20 15:08:34 +02:00
|
|
|
<dependencies>
|
|
|
|
|
|
2010-11-14 14:09:18 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.tmatesoft.svnkit</groupId>
|
|
|
|
|
<artifactId>svnkit</artifactId>
|
|
|
|
|
<version>${svnkit.version}</version>
|
2010-11-14 14:19:25 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>trilead-ssh2</artifactId>
|
|
|
|
|
<groupId>org.tmatesoft.svnkit</groupId>
|
|
|
|
|
</exclusion>
|
2010-12-10 18:33:58 +01:00
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>sqljet</artifactId>
|
|
|
|
|
<groupId>org.tmatesoft.sqljet</groupId>
|
|
|
|
|
</exclusion>
|
2010-11-14 14:19:25 +01:00
|
|
|
</exclusions>
|
2010-11-14 14:09:18 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2010-11-14 13:51:33 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.tmatesoft.svnkit</groupId>
|
|
|
|
|
<artifactId>svnkit-dav</artifactId>
|
2010-11-14 14:09:18 +01:00
|
|
|
<version>${svnkit.version}</version>
|
2010-11-14 13:51:33 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2010-12-06 21:21:18 +01:00
|
|
|
<!-- test scope -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-test</artifactId>
|
2010-12-31 12:21:49 +01:00
|
|
|
<version>1.0-M5</version>
|
2010-12-06 21:21:18 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2010-09-20 15:08:34 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
2010-11-14 14:09:18 +01:00
|
|
|
<properties>
|
|
|
|
|
<svnkit.version>1.3.4</svnkit.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2010-09-20 14:24:30 +02:00
|
|
|
</project>
|