pom.xml 1.24 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>
        <collectionSample.filename>EchantillonCollection.csv</collectionSample.filename>
        <ratingSample.filename>EchantillonNotation.csv</ratingSample.filename>
        <recommandations.filename>Recommandations.csv</recommandations.filename>
        <coverage.filename>Couverture.txt</coverage.filename>
    </properties>
</project>