-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
40 lines (33 loc) · 944 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
34
35
36
37
38
39
40
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'uk.ac.ncl'
version '0.1-public'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.google.guava:guava:28.1-jre'
compile group: 'org.neo4j', name: 'neo4j', version: '3.5.12'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile group: 'org.json', name: 'json', version: '20190722'
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
}
application {
mainClassName = 'uk.ac.ncl.Run'
applicationDefaultJvmArgs = ['-Xmx32G']
}
test {
testLogging {
events "standardOut"
}
}
shadowJar {
mergeServiceFiles()
manifest { attributes "Main-Class": "uk.ac.ncl.Run"}
}