-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
53 lines (41 loc) · 876 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
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
jcenter()
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'java-library'
}
//This allows you to build a single shadowJar with the contents of all the
// subprojects included in it
dependencies {
compile subprojects
}
subprojects {
apply plugin: 'java-library'
group 'org.htsjdk'
version '0.0.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
testCompile "org.testng:testng:6.14.3"
testCompile "com.google.jimfs:jimfs:1.1"
testCompile "org.apache.commons:commons-lang3:3.7"
compile 'commons-io:commons-io:2.5'
}
test {
useTestNG{}
}
}
project(':cram') {
dependencies {
api project(':core')
}
}
wrapper {
gradleVersion "4.10"
}