pom.xml 3.91 KB
<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>pl.waw.ipipan.zil.summ</groupId>
    <artifactId>nicolas-container</artifactId>
    <packaging>pom</packaging>
    <version>1.0-SNAPSHOT</version>

    <modules>
        <module>nicolas-core</module>
        <module>nicolas-cli</module>
        <module>nicolas-model</module>
        <module>nicolas-train</module>
        <module>nicolas-zero</module>
    </modules>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version.build>1.8</java.version.build>
    </properties>

    <prerequisites>
        <maven>3.0.5</maven>
    </prerequisites>

    <developers>
        <developer>
            <name>Mateusz Kopeć</name>
            <organization>ICS PAS</organization>
            <email>m.kopec@ipipan.waw.pl</email>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>pl.waw.ipipan.zil.summ</groupId>
            <artifactId>pscapi</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>pl.waw.ipipan.zil.multiservice</groupId>
            <artifactId>utils</artifactId>
            <version>1.0</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-csv</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>19.0</version>
        </dependency>
        <dependency>
            <groupId>nz.ac.waikato.cms.weka</groupId>
            <artifactId>weka-dev</artifactId>
            <version>3.9.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.5</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
                <configuration>
                    <source>${java.version.build}</source>
                    <target>${java.version.build}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>zil-maven-snapshot-repo</id>
            <name>ZIL maven snapshot repository</name>
            <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots/</url>
        </repository>
        <repository>
            <id>zil-maven-release-repo</id>
            <name>ZIL maven release repository</name>
            <url>http://maven.nlp.ipipan.waw.pl/content/repositories/releases/</url>
        </repository>
        <repository>
            <id>zil-maven-repo-3rdparty</id>
            <name>ZIL maven repository 3rdparty</name>
            <url>http://maven.nlp.ipipan.waw.pl/content/repositories/thirdparty/</url>
        </repository>
    </repositories>

    <distributionManagement>
        <repository>
            <id>deployment</id>
            <url>http://maven.nlp.ipipan.waw.pl/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>deployment</id>
            <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

</project>