forked from jendelel/pranklib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (28 loc) · 1.02 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
version '1.0.0'
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = "cz.siret.prank.lib.Main"
repositories {
mavenLocal()
mavenCentral()
}
task fatJar(type: Jar) {
manifest {
attributes 'Main-Class': mainClassName
}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.biojava', name: 'biojava-core', version: '4.2.12'
compile 'org.biojava:biojava-alignment:4.2.12'
compile 'org.biojava:biojava-structure:4.2.12'
compile group: 'com.univocity', name: 'univocity-parsers', version: '2.4.0' // For parsing csv
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.13' // bz2 decompress
compile 'org.slf4j:slf4j-api:1.7.26'
//compile files('libs/biojava-structure-4.2.6-rdk1.jar') // customized fork for pocket-rank
}