mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 19:45:51 +01:00
70 lines
1.9 KiB
XML
70 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>scm-plugins</artifactId>
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
<version>1.9-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
<artifactId>scm-svn-plugin</artifactId>
|
|
<version>1.9-SNAPSHOT</version>
|
|
<name>scm-svn-plugin</name>
|
|
<url>https://bitbucket.org/sdorra/scm-manager</url>
|
|
<description>Plugin for the version control system Subversion</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${servlet.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>sonia.svnkit</groupId>
|
|
<artifactId>svnkit-dav</artifactId>
|
|
<version>${svnkit-dav.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>trilead-ssh2</artifactId>
|
|
<groupId>org.tmatesoft.svnkit</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>sqljet</artifactId>
|
|
<groupId>org.tmatesoft.sqljet</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- test scope -->
|
|
|
|
<dependency>
|
|
<groupId>sonia.scm</groupId>
|
|
<artifactId>scm-test</artifactId>
|
|
<version>1.9-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<svnkit-dav.version>1.3.5.7</svnkit-dav.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>maven.scm-manager.org</id>
|
|
<name>scm-manager release repository</name>
|
|
<url>http://maven.scm-manager.org/nexus/content/groups/public</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</project>
|