server/java/pom.xml
author durandn
Mon, 11 Apr 2016 16:28:05 +0200
changeset 608 8fd40139827c
parent 606 e7e699f3cf97
child 623 dad99f0ea54c
permissions -rw-r--r--
permission implementation has to be client-side and not in the generic api package + deleted duplicate migration

<?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.12.19</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>