2014-03-18 15:48:43 +01:00
|
|
|
<?xml version="1.0"?>
|
2014-12-13 16:29:16 +01: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">
|
2014-03-18 15:48:43 +01:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
2014-10-10 20:06:56 +02:00
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm</artifactId>
|
2020-02-03 13:42:29 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2014-03-18 15:48:43 +01:00
|
|
|
</parent>
|
|
|
|
|
|
2014-10-10 20:06:56 +02:00
|
|
|
<groupId>sonia.scm</groupId>
|
2014-03-18 15:48:43 +01:00
|
|
|
<artifactId>scm-annotation-processor</artifactId>
|
2020-02-03 13:42:29 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2014-03-18 15:48:43 +01:00
|
|
|
<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>
|
2020-02-03 13:42:29 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2014-03-18 15:48:43 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2014-03-18 17:23:48 +01:00
|
|
|
<!-- rest api -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2017-06-27 20:16:05 +02:00
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
|
<version>${jaxrs.version}</version>
|
2014-03-18 17:23:48 +01:00
|
|
|
</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>
|
2016-09-13 21:45:42 +02:00
|
|
|
<version>1.7</version>
|
2014-03-18 15:48:43 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|