Jean-Francois Leveque

Ajout de dépendances et packaging Spring Boot

...@@ -14,4 +14,43 @@ ...@@ -14,4 +14,43 @@
14 <artifactId>grog-recommendation-process</artifactId> 14 <artifactId>grog-recommendation-process</artifactId>
15 <version>3.0-SNAPSHOT</version> 15 <version>3.0-SNAPSHOT</version>
16 <packaging>jar</packaging> 16 <packaging>jar</packaging>
17 +
18 + <dependencies>
19 + <dependency>
20 + <groupId>org.springframework.boot</groupId>
21 + <artifactId>spring-boot-starter</artifactId>
22 + </dependency>
23 + <dependency>
24 + <groupId>org.springframework.boot</groupId>
25 + <artifactId>spring-boot-starter-test</artifactId>
26 + <scope>test</scope>
27 + </dependency>
28 + <dependency>
29 + <groupId>org.apache.commons</groupId>
30 + <artifactId>commons-csv</artifactId>
31 + <version>1.3</version>
32 + </dependency>
33 + <dependency>
34 + <groupId>org.grouplens.lenskit</groupId>
35 + <artifactId>lenskit-all</artifactId>
36 + <version>2.2.1</version>
37 + </dependency>
38 + </dependencies>
39 +
40 + <build>
41 + <plugins>
42 + <plugin>
43 + <groupId>org.springframework.boot</groupId>
44 + <artifactId>spring-boot-maven-plugin</artifactId>
45 + <version>1.5.2.RELEASE </version>
46 + <executions>
47 + <execution>
48 + <goals>
49 + <goal>repackage</goal>
50 + </goals>
51 + </execution>
52 + </executions>
53 + </plugin>
54 + </plugins>
55 + </build>
17 </project> 56 </project>
...\ No newline at end of file ...\ No newline at end of file
......