added scm-core library

This commit is contained in:
Sebastian Sdorra
2010-09-08 10:30:08 +02:00
parent 9513d731bd
commit f1619a098a
7 changed files with 26 additions and 2 deletions

View File

@@ -11,6 +11,7 @@
<name>scm</name>
<modules>
<module>scm-core</module>
<module>scm-webapp</module>
</modules>
@@ -68,4 +69,3 @@
</properties>
</project>

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

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>scm</artifactId>
<groupId>sonia.scm</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>sonia.scm</groupId>
<artifactId>scm-core</artifactId>
<version>1.0-SNAPSHOT</version>
<name>scm-core</name>
</project>

View File

@@ -25,6 +25,12 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>sonia.scm</groupId>
<artifactId>scm-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>