-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
executable file
·47 lines (38 loc) · 1.26 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
apply plugin: 'groovy'
apply plugin: 'eclipse'
project.ext {
VERSION="0.1.0"
GROOVY_VERSION="2.4.10"
mainClassName = 'SimulateCNVs'
}
repositories {
mavenCentral()
maven {
name "biojava"
url "http://www.biojava.org/download/maven/"
}
maven {
name "gral"
url "http://mvn.erichseifert.de/maven2"
}
}
configurations {
compile
}
dependencies {
compile group: 'org.codehaus.groovy', name: 'groovy', version: "$GROOVY_VERSION"
compile group: 'org.codehaus.groovy', name: 'groovy-xml', version: "$GROOVY_VERSION"
compile group: 'org.codehaus.groovy', name: 'groovy-ant', version: "$GROOVY_VERSION"
compile group: 'org.codehaus.groovy', name: 'groovy-json', version: "$GROOVY_VERSION"
compile group: 'org.codehaus.groovy', name: 'groovy-sql', version: "$GROOVY_VERSION"
// https://mvnrepository.com/artifact/com.googlecode.lanterna/lanterna
compile group: 'com.googlecode.lanterna', name: 'lanterna', version: '3.0.0-beta3'
compile 'org.codehaus.gpars:gpars:0.12'
compile files(fileTree(dir:'lib', includes:['*.jar']))
}
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
manifest {
attributes 'Main-Class': mainClassName
}
}