server/java/pom.xml
changeset 316 242510015401
parent 312 d828c69d860d
child 375 c313de191f2b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/server/java/pom.xml	Mon Jul 21 14:48:01 2014 +0200
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.iri_research.renkan</groupId>
+    <artifactId>renkan</artifactId>
+    <packaging>pom</packaging>
+    <version>0.7.11</version>
+    <name>Renkan project</name>
+
+    <modules>
+        <module>renkan-core</module>
+        <module>renkan-web</module>
+        <module>renkan-management</module>
+    </modules>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.7</source>
+                        <target>1.7</target>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>