forked from alvarag/ConceptDriftMOA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
89 lines (76 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<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">
<modelVersion>4.0.0</modelVersion>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<groupId>moa</groupId>
<artifactId>moa-cd-release</artifactId>
<version>2016.07</version> <!-- adjust -->
<name>Plugin for MOA: Concept Drift Algorithms</name>
<description>
Plugin for Massive On-line Analysis environment for massive data mining.
</description>
<organization>
<name>University of Burgos, Burgos, Spain</name>
<url>http://wwww.ubu.es/advanced-data-mining-research-and-bioinformatics-learning-admirable</url>
</organization>
<licenses>
<license>
<name>GNU General Public License 3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>alvarag</id>
<name>Álvar Arnaiz-González</name>
<email>alvarag@ubu.es</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>nz.ac.waikato.cms.moa</groupId>
<artifactId>moa</artifactId>
<version>2016.04</version>
<scope>system</scope>
<systemPath>${basedir}/lib/moa-2016.04.jar</systemPath>
</dependency>
<dependency>
<groupId>gov.nist.math</groupId>
<artifactId>jama</artifactId>
<version>1.0.3</version>
<scope>system</scope>
<systemPath>${basedir}/lib/jama-1.0.3.jar</systemPath>
</dependency>
<dependency>
<groupId>core.xxl</groupId>
<artifactId>xxl</artifactId>
<version>2.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/xxl-core-2.0.beta.jar</systemPath>
</dependency>
<dependency>
<groupId>syncstream.kramerlab</groupId>
<artifactId>syncstream</artifactId>
<version>20160427</version>
<scope>system</scope>
<systemPath>${basedir}/lib/SyncStream-20160427.jar</systemPath>
</dependency>
<dependency>
<groupId>jnl</groupId>
<artifactId>JNL</artifactId>
<version>1.1</version>
<scope>system</scope>
<systemPath>${basedir}/lib/JNL.jar</systemPath>
</dependency>
<dependency>
<groupId>nz.ac.waikato.cms.weka</groupId>
<artifactId>weka-dev</artifactId>
<version>3.7.12</version>
<scope>system</scope>
<systemPath>${basedir}/lib/weka-dev-3.7.12.jar</systemPath>
</dependency>
</dependencies>
</project>