Showing
3 changed files
with
49 additions
and
1 deletions
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
4 | + <modelVersion>4.0.0</modelVersion> | ||
5 | + | ||
6 | + <name>Recommandation evaluation for GROG : post-traitements</name> | ||
7 | + <url>http://legrog.org</url> | ||
8 | + | ||
9 | + <parent> | ||
10 | + <groupId>org.legrog</groupId> | ||
11 | + <artifactId>grog-recommendation</artifactId> | ||
12 | + <version>3.0-SNAPSHOT</version> | ||
13 | + </parent> | ||
14 | + <artifactId>grog-recommendation-postprocess</artifactId> | ||
15 | + <version>3.0-SNAPSHOT</version> | ||
16 | + <packaging>jar</packaging> | ||
17 | +</project> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
4 | + <modelVersion>4.0.0</modelVersion> | ||
5 | + | ||
6 | + <name>Recommandation evaluation for GROG : traitements</name> | ||
7 | + <url>http://legrog.org</url> | ||
8 | + | ||
9 | + <parent> | ||
10 | + <groupId>org.legrog</groupId> | ||
11 | + <artifactId>grog-recommendation</artifactId> | ||
12 | + <version>3.0-SNAPSHOT</version> | ||
13 | + </parent> | ||
14 | + <artifactId>grog-recommendation-process</artifactId> | ||
15 | + <version>3.0-SNAPSHOT</version> | ||
16 | + <packaging>jar</packaging> | ||
17 | +</project> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -13,5 +13,19 @@ | ... | @@ -13,5 +13,19 @@ |
13 | </parent> | 13 | </parent> |
14 | <artifactId>grog-recommendation</artifactId> | 14 | <artifactId>grog-recommendation</artifactId> |
15 | <version>3.0-SNAPSHOT</version> | 15 | <version>3.0-SNAPSHOT</version> |
16 | - <packaging>jar</packaging> | 16 | + <packaging>pom</packaging> |
17 | + | ||
18 | + <modules> | ||
19 | + <module>grog-recommendation-preprocess</module> | ||
20 | + <module>grog-recommendation-process</module> | ||
21 | + <module>grog-recommendation-postprocess</module> | ||
22 | + </modules> | ||
23 | + | ||
24 | + <properties> | ||
25 | + <parameters.filename>Parametres.properties</parameters.filename> | ||
26 | + <collectionSample.filename>EchantillonCollection.csv</collectionSample.filename> | ||
27 | + <ratingSample.filename>EchantillonNotation.csv</ratingSample.filename> | ||
28 | + <recommandations.filename>Recommandations.csv</recommandations.filename> | ||
29 | + <coverage.filename>Couverture.txt</coverage.filename> | ||
30 | + </properties> | ||
17 | </project> | 31 | </project> | ... | ... |
-
Please register or login to post a comment