Files
SCM-Manager/scm-test/pom.xml

66 lines
1.7 KiB
XML
Raw Normal View History

<?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">
2010-09-16 20:01:20 +02:00
<modelVersion>4.0.0</modelVersion>
2010-09-16 20:01:20 +02:00
<parent>
<artifactId>scm</artifactId>
<groupId>sonia.scm</groupId>
<version>2.0.0-SNAPSHOT</version>
2010-09-16 20:01:20 +02:00
</parent>
<groupId>sonia.scm</groupId>
<artifactId>scm-test</artifactId>
<version>2.0.0-SNAPSHOT</version>
<name>scm-test</name>
2010-09-16 20:01:20 +02:00
<dependencies>
2010-12-06 20:05:04 +01:00
<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>
2018-08-01 11:42:40 +02:00
<!-- scm-test is test scoped in other modules and they might need shiro unit for their tests. -->
<scope>compile</scope>
</dependency>
2010-09-16 20:01:20 +02:00
2010-09-16 20:19:11 +02:00
<dependency>
<groupId>org.mockito</groupId>
2018-08-08 09:20:08 +02:00
<artifactId>mockito-core</artifactId>
<scope>compile</scope>
<version>${mockito.version}</version>
2010-09-16 20:01:20 +02:00
</dependency>
2010-12-06 21:21:18 +01:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
2011-05-26 09:34:22 +02:00
2017-01-14 13:31:31 +01:00
</dependencies>
2011-05-26 09:34:22 +02:00
<!-- for svnkit and jgit -->
2011-05-26 09:34:22 +02:00
<repositories>
<repository>
<id>maven.tmatesoft.com</id>
<name>tmatesoft release repository</name>
<url>https://maven.tmatesoft.com/content/repositories/releases</url>
</repository>
2011-05-26 09:34:22 +02:00
</repositories>
2017-02-07 09:34:56 +01:00
2010-09-16 20:01:20 +02:00
</project>