-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
59 lines (51 loc) · 2.18 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<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">
<parent>
<artifactId>lutece-global-pom</artifactId>
<groupId>fr.paris.lutece.tools</groupId>
<version>4.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>fr.paris.lutece.plugins</groupId>
<artifactId>module-stock-recommendation</artifactId>
<packaging>lutece-plugin</packaging>
<version>1.0.1-SNAPSHOT</version>
<name>Lutece stock recommendation module</name>
<repositories>
<repository>
<id>lutece</id>
<name>luteceRepository</name>
<url>http://dev.lutece.paris.fr/maven_repository</url>
<layout>default</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>fr.paris.lutece.plugins</groupId>
<artifactId>plugin-stock</artifactId>
<version>[2.2.1-SNAPSHOT,)</version>
<type>lutece-plugin</type>
</dependency>
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-core</artifactId>
<version>0.9</version>
</dependency>
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-integration</artifactId>
<version>0.9</version>
</dependency>
</dependencies>
<properties>
<componentName>stock-recommendation</componentName>
<jiraProjectName>STOCKRECMD</jiraProjectName>
<jiraComponentId>10661</jiraComponentId>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:https://github.com/lutece-platform/lutece-stock-module-stock-recommendation.git</connection>
<developerConnection>scm:git:https://github.com/lutece-platform/lutece-stock-module-stock-recommendation.git</developerConnection>
<url>https://github.com/lutece-platform/lutece-stock-module-stock-recommendation.git</url>
<tag>HEAD</tag>
</scm>
</project>