-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
86 lines (78 loc) · 3.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
buildscript {
repositories {
mavenLocal()
jcenter()
maven {
url "https://oss.jfrog.org/artifactory/oss-snapshot-local"
}
}
dependencies {
classpath group: 'org.intermine', name: 'plugin', version: System.getProperty("imVersion")
classpath 'com.bmuschko:gradle-cargo-plugin:2.3'
}
}
ext {
mineRelease = project.hasProperty('release') ? "." + release : ''
mineName = "vignamine"
minePropertyFileName = "${mineName}.properties$mineRelease"
minePropertyFile = "${System.env.HOME}/.intermine/$minePropertyFileName"
println "Using properties file: '$minePropertyFile'"
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
jcenter()
maven {
url 'https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-repo/'
}
maven {
url 'https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/'
}
}
test {
ignoreFailures = true
}
dependencies {
compile group: "org.intermine", name: "intermine-resources", version: System.getProperty("imVersion")
// https://mvnrepository.com/artifact/org.postgresql/postgresql
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.2'
// https://mvnrepository.com/artifact/org.apache.httpcomponents/fluent-hc
compile group: 'org.apache.httpcomponents', name: 'fluent-hc', version: '4.5.8'
// https://mvnrepository.com/artifact/org.apache.commons/commons-text
compile group: 'org.apache.commons', name: 'commons-text', version: '1.9'
// https://mvnrepository.com/artifact/commons-cli/commons-cli
compile group: 'commons-cli', name: 'commons-cli', version: '1.5.0'
compile('ant:ant:1.6.5')
testCompile group: 'junit', name: 'junit', version: '4.8.2'
compile fileTree(dir: 'libs', include: '*.jar')
// https://mvnrepository.com/artifact/org.biojava/biojava-genome
implementation group: 'org.biojava', name: 'biojava-genome', version: '6.0.4'
}
task copyMineProperties(type: Copy) {
description "Copies mine specific intermine.properties file (from .intermine directory) into resources output to be included in the war"
dependsOn 'processResources'
from (minePropertyFile)
into sourceSets.main.output.resourcesDir
rename { fileName -> fileName.replace("$minePropertyFileName", "intermine.properties") }
// inputs.sourceFiles.stopExecutionIfEmpty()
}
}
task clean(type: Delete) {
println "cleaning"
delete "idresolver.cache"
println "deleting idresolver cache"
delete "datasources.xml"
println "deleting datasources.xml"
delete "organisms.xml"
println "deleting organisms.xml"
delete "publications.xml"
println "deleting publications.xml"
delete fileTree('.') {
include '*.log'
}
println "deleted log files"
}