create separate module for annotations and build maven plugins before scm-core

This commit is contained in:
Sebastian Sdorra
2014-03-18 17:23:48 +01:00
parent 0d566e3974
commit 812021f212
9 changed files with 68 additions and 4 deletions

View File

@@ -64,9 +64,10 @@
</prerequisites>
<modules>
<module>scm-annotations</module>
<module>scm-maven-plugins</module>
<module>scm-core</module>
<module>scm-test</module>
<module>scm-maven-plugins</module>
<module>scm-plugins</module>
<module>scm-samples</module>
<module>scm-dao-xml</module>

18
scm-annotations/pom.xml Normal file
View File

@@ -0,0 +1,18 @@
<?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</groupId>
<artifactId>scm</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<groupId>sonia.scm</groupId>
<artifactId>scm-annotations</artifactId>
<version>2.0.0-SNAPSHOT</version>
<name>scm-annotations</name>
</project>

View File

@@ -25,6 +25,14 @@
<scope>provided</scope>
</dependency>
<!-- annotations -->
<dependency>
<groupId>sonia.scm</groupId>
<artifactId>scm-annotations</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<!-- logging -->
<dependency>
@@ -97,6 +105,15 @@
<version>2.6</version>
</dependency>
<!-- annotation processor -->
<dependency>
<groupId>sonia.scm.maven</groupId>
<artifactId>scm-annotation-processor</artifactId>
<version>2.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>

View File

@@ -17,12 +17,40 @@
<dependencies>
<!-- scm annotations -->
<dependency>
<groupId>sonia.scm</groupId>
<artifactId>scm-core</artifactId>
<artifactId>scm-annotations</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<!-- 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 -->
<dependency>
<groupId>org.kohsuke.metainf-services</groupId>
<artifactId>metainf-services</artifactId>