2014-03-18 15:48:43 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>sonia.scm.maven</groupId>
|
|
|
|
|
<artifactId>scm-maven-plugins</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm.maven</groupId>
|
|
|
|
|
<artifactId>scm-annotation-processor</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
<name>scm-annotation-processor</name>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2014-03-18 17:23:48 +01:00
|
|
|
<!-- scm annotations -->
|
|
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2014-03-18 17:23:48 +01:00
|
|
|
<artifactId>scm-annotations</artifactId>
|
2014-03-18 15:48:43 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2014-03-18 17:23:48 +01:00
|
|
|
<!-- rest api -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
<version>${jersey.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- event bus -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.legman</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>${legman.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- util -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- meta-inf services -->
|
|
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.kohsuke.metainf-services</groupId>
|
|
|
|
|
<artifactId>metainf-services</artifactId>
|
|
|
|
|
<version>1.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|