mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-12-16 05:19:47 +01:00
66 lines
1.7 KiB
XML
66 lines
1.7 KiB
XML
<?xml version="1.0"?>
|
|
<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</artifactId>
|
|
<groupId>sonia.scm</groupId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
<artifactId>scm-test</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<name>scm-test</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-servlet_2.5_spec</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>sonia.scm</groupId>
|
|
<artifactId>scm-core</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.sdorra</groupId>
|
|
<artifactId>shiro-unit</artifactId>
|
|
<!-- scm-test is test scoped in other modules and they might need shiro unit for their tests. -->
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<scope>compile</scope>
|
|
<version>${mockito.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!-- for svnkit and jgit -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>maven.tmatesoft.com</id>
|
|
<name>tmatesoft release repository</name>
|
|
<url>https://maven.tmatesoft.com/content/repositories/releases</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</project>
|