mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-04 20:45:52 +01:00
89 lines
2.2 KiB
XML
89 lines
2.2 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.49</version>
|
|
</parent>
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
<artifactId>scm-svn-plugin</artifactId>
|
|
<version>1.49</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</artifactId>
|
|
<version>${svnkit.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>trilead-ssh2</artifactId>
|
|
<groupId>org.tmatesoft.svnkit</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>sonia.svnkit</groupId>
|
|
<artifactId>svnkit-dav</artifactId>
|
|
<version>${svnkit.version}</version>
|
|
</dependency>
|
|
|
|
<!-- test scope -->
|
|
|
|
<dependency>
|
|
<groupId>sonia.scm</groupId>
|
|
<artifactId>scm-test</artifactId>
|
|
<version>1.49</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!-- create test jar -->
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<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>
|