-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (29 loc) · 883 Bytes
/
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
plugins {
id 'java'
}
group 'xyz.acevedosharp'
version '1.0'
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://clojars.org/repo/" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://nexus.cs.upb.de/repository/maven-releases/" }
}
dependencies {
implementation 'ai.libs:jaicore-ml:0.2.4'
implementation 'ai.libs:hasco-core:0.2.4'
implementation 'ai.libs:mlplan-weka:0.2.4'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.22'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
zip64 = true
manifest {
attributes "Main-Class": 'xyz.acevedosharp.EpicMain'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
exclude ('META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA')
}