pom.xml 1.86 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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <name>Recommandation evaluation for GROG</name>
    <url>http://legrog.org</url>

    <parent>
        <groupId>org.legrog</groupId>
        <artifactId>grog-cubi</artifactId>
        <version>3.0-SNAPSHOT</version>
    </parent>
    <artifactId>grog-recommendation</artifactId>
    <version>3.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>grog-recommendation-preprocess</module>
        <module>grog-recommendation-process</module>
        <module>grog-recommendation-postprocess</module>
    </modules>

    <properties>
        <parameters.filename>Parametres.properties</parameters.filename>
        <collectionComplete.filename>CompletCollection.csv</collectionComplete.filename>
        <ratingComplete.filename>CompletNotation.csv</ratingComplete.filename>
        <collectionSample.filename>EchantillonCollection.csv</collectionSample.filename>
        <ratingSample.filename>EchantillonNotation.csv</ratingSample.filename>
        <collectionAnnotated.filename>AnnoteCollection.csv</collectionAnnotated.filename>
        <ratingAnnotated.filename>AnnoteNotation.csv</ratingAnnotated.filename>
        <recommandations.filename>Recommandations.csv</recommandations.filename>
        <coverage.filename>Couverture.txt</coverage.filename>
        <precisionRecall.filename>PrecisionRappel.csv</precisionRecall.filename>
    </properties>
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>
</project>