-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (51 loc) · 1.21 KB
/
build.gradle
File metadata and controls
57 lines (51 loc) · 1.21 KB
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
plugins {
id 'java'
id 'eclipse-wtp'
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'conf'
}
}
test {
java {
srcDir 'test'
}
}
}
//Java version
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// dependencies for development time
implementation ('ai.libs:mlplan:0.1.6') {
exclude group: 'org.nd4j'
exclude group: 'org.bytedeco.javacpp-presets'
exclude group: 'org.deeplearning4j'
exclude group: 'org.openjfx'
exclude group: 'com.sun.jersey'
exclude group: 'org.glassfish.jersey.core'
exclude group: 'org.glassfish.jersey.inject'
exclude group: 'org.apache.hadoop'
exclude group: 'org.apache.maven'
exclude group: 'org.apache.zookeeper'
exclude group: 'org.glassfish.jersey.ext'
exclude group: 'org.eclipse.rdf4j'
exclude group: 'net.sourceforge.owlapi'
exclude group: 'org.graphstream'
exclude group: 'com.github.graphstream'
exclude group: 'com.github.mwever'
exclude module: 'weka'
}
}
repositories {
//mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "http://clojars.org/repo/" }
maven { url "https://plugins.gradle.org/m2/" }
}