forked from Undin/recommender-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·41 lines (34 loc) · 912 Bytes
/
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>ru.ifmo.ctddev.ml</groupId>
<artifactId>mfe</artifactId>
<version>2.0</version>
<!-- packaging>jar</packaging -->
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>ru.ifmo.ctddev.ml.mfe.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>nz.ac.waikato.cms.weka</groupId>
<artifactId>weka-stable</artifactId>
<version>3.8.3</version>
</dependency>
</dependencies>
</project>