forked from fmohr/JASE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
80 lines (60 loc) · 1.82 KB
/
build.gradle
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
apply plugin: 'java'
sourceSets {
main {
java {
srcDir 'src'
srcDir 'examples'
}
resources {
srcDir 'conf'
}
}
test {
java {
srcDir 'test'
}
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
dependencies {
// Catalano libraries for image filters and preprocessing
compile name: 'Catalano.Image'
compile name: 'Catalano.Math'
compile name: 'Catalano.Statistics'
compile name: 'CrcServices'
compile name: 'JAICore'
// Apache Commons
compile 'org.apache.commons:commons-lang3:3.5'
compile 'org.apache.commons:commons-collections4:4.1'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3'
// HTTP Webserver
testCompile group: 'com.sun.net.httpserver', name: 'http', version: '20070405'
compile group: 'org.apache.tomcat', name: 'tomcat-servlet-api', version: '9.0.0.M22'
// Google
// compile 'com.google.guava:guava:18.0'
// Weka
compile group: 'nz.ac.waikato.cms.weka', name: 'weka-dev', version: '3.9.1'
// Basics
compile 'junit:junit:4.12'
compile 'org.slf4j:slf4j-api:1.7.13'
runtime 'org.slf4j:slf4j-log4j12:1.7.13', 'log4j:log4j:1.2.17'
compile name: 'apache-log4j-extras', version: '1.2.17'
//compile fileTree(dir: "${project.projectDir}/lib/", include: '*.jar')
// Jackson for JSON (used by JAICore but not contained in the JAR)
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.0.pr4'
compile name: 'mtj'
}
repositories {
mavenCentral()
mavenLocal()
flatDir {
dirs 'lib'
}
}