Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-04-06 16:55:31 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3f06357b36dd7977563922810a1b483d2a48bb0e
3f06357b
1 parent
98b803d1
Ajout de dépendances et packaging Spring Boot
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
grog-recommendation/grog-recommendation-process/pom.xml
grog-recommendation/grog-recommendation-process/pom.xml
View file @
3f06357
...
...
@@ -14,4 +14,43 @@
<artifactId>
grog-recommendation-process
</artifactId>
<version>
3.0-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-csv
</artifactId>
<version>
1.3
</version>
</dependency>
<dependency>
<groupId>
org.grouplens.lenskit
</groupId>
<artifactId>
lenskit-all
</artifactId>
<version>
2.2.1
</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
1.5.2.RELEASE
</version>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment