-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
46 lines (33 loc) · 1.01 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
group 'com.redgear'
version '0.1.0-SNAPSHOT'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'application'
mainClassName = 'com.redgear.vine.Main'
run {
def exec = System.getProperty("exec.args")
if(exec)
args exec.split()
}
sourceCompatibility = 1.8
jar {
manifest {
attributes 'Main-Class': 'com.redgear.vine.Main'
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.4'
compile 'net.sourceforge.argparse4j:argparse4j:0.7.0'
compile 'org.apache.commons:commons-compress:1.12'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.1'
compile 'org.apache.maven:maven-aether-provider:3.3.9'
compile 'org.eclipse.aether:aether-impl:1.1.0'
compile 'org.eclipse.aether:aether-transport-http:1.1.0'
compile 'org.eclipse.aether:aether-transport-file:1.1.0'
compile 'org.eclipse.aether:aether-connector-basic:1.1.0'
compile 'org.slf4j:slf4j-simple:1.7.21'
testCompile 'junit:junit:4.11'
}