2010-12-05 14:00:01 +01:00
|
|
|
<?xml version="1.0"?>
|
2011-07-09 15:11:06 +02:00
|
|
|
<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-12-05 14:00:01 +01:00
|
|
|
|
2010-09-16 20:01:20 +02:00
|
|
|
<parent>
|
|
|
|
|
<artifactId>scm</artifactId>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-09-16 20:01:20 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2010-12-05 14:00:01 +01:00
|
|
|
<artifactId>scm-test</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-12-05 14:00:01 +01:00
|
|
|
<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>
|
|
|
|
|
|
2010-09-26 15:53:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-core</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-09-26 15:53:26 +02:00
|
|
|
</dependency>
|
2014-01-11 10:55:27 +01:00
|
|
|
|
2016-12-08 22:08:11 +01:00
|
|
|
<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>
|
2016-12-08 22:08:11 +01:00
|
|
|
</dependency>
|
2010-09-16 20:01:20 +02:00
|
|
|
|
2010-09-16 20:19:11 +02:00
|
|
|
<dependency>
|
2010-12-05 14:00:01 +01:00
|
|
|
<groupId>org.mockito</groupId>
|
2018-08-08 09:20:08 +02:00
|
|
|
<artifactId>mockito-core</artifactId>
|
2018-08-06 14:08:57 +02:00
|
|
|
<scope>compile</scope>
|
2018-08-09 11:53:45 +02:00
|
|
|
<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
|
|
|
|
2017-02-06 15:52:24 +01:00
|
|
|
<!-- for svnkit and jgit -->
|
2011-05-26 09:34:22 +02:00
|
|
|
|
|
|
|
|
<repositories>
|
2017-02-06 15:52:24 +01:00
|
|
|
|
|
|
|
|
<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>
|