2010-09-08 10:30:08 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
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-08 10:30:08 +02:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>scm</artifactId>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2012-06-03 11:23:33 +02:00
|
|
|
<version>1.17-SNAPSHOT</version>
|
2010-09-08 10:30:08 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-core</artifactId>
|
2012-06-03 11:23:33 +02:00
|
|
|
<version>1.17-SNAPSHOT</version>
|
2010-09-08 10:30:08 +02:00
|
|
|
<name>scm-core</name>
|
|
|
|
|
|
2010-10-12 09:16:40 +02:00
|
|
|
<dependencies>
|
2011-12-11 17:12:09 +01:00
|
|
|
|
|
|
|
|
<!-- servlet api -->
|
2010-10-12 09:16:40 +02:00
|
|
|
|
2010-12-05 14:00:01 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>${servlet.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2011-12-11 17:12:09 +01:00
|
|
|
|
|
|
|
|
<!-- logging -->
|
2010-12-05 14:00:01 +01:00
|
|
|
|
2011-01-20 18:55:14 +01:00
|
|
|
<dependency>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2011-12-11 17:12:09 +01:00
|
|
|
|
|
|
|
|
<!-- injection -->
|
2011-01-20 18:55:14 +01:00
|
|
|
|
2010-10-12 09:16:40 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
|
<artifactId>guice-multibindings</artifactId>
|
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2010-12-05 14:00:01 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
|
</dependency>
|
2011-12-11 17:12:09 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
|
<artifactId>guice-throwingproviders</artifactId>
|
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- rest api -->
|
2010-12-05 14:00:01 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
<version>${jersey.version}</version>
|
|
|
|
|
</dependency>
|
2012-02-26 11:40:34 +01:00
|
|
|
|
|
|
|
|
<!-- util -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
2012-05-06 14:24:33 +02:00
|
|
|
<version>12.0</version>
|
2012-02-26 11:40:34 +01:00
|
|
|
</dependency>
|
2012-04-24 21:04:17 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
2010-12-05 14:00:01 +01:00
|
|
|
|
2010-10-12 09:16:40 +02:00
|
|
|
</dependencies>
|
2011-10-04 18:45:14 +02:00
|
|
|
|
2010-09-08 10:30:08 +02:00
|
|
|
</project>
|