-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
46 lines (40 loc) · 1.25 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
plugins {
id 'java'
id 'distribution'
}
distributions {
main {
contents {
into('bin') {
// This ensures that files in earlier sources will take
// precedence over files of the same name from later sources
// /src/main/scripts contains code shared with the local
// infrastructure, and public-only overrides go in /bin
duplicatesStrategy = 'exclude'
from 'bin'
from 'src/main/scripts'
from 'dependencies/bin'
}
into('lib') {
// Puts the compiled xenocp jar into lib
from jar
// Puts all of the compile dependencies into lib
from configurations.compileClasspath
}
}
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.broadinstitute:picard:2.19.2'
implementation 'commons-cli:commons-cli:1.2'
implementation 'com.github.samtools:htsjdk:2.19.0'
implementation files('dependencies/lib/java/xenocp-dependencies.jar')
testImplementation 'junit:junit:4.10'
}
group = 'org.stjude.compbio.xenocp'
version = '3.0.0'
description = 'xenocp'
sourceCompatibility = '1.8'