-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
69 lines (61 loc) · 2.09 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
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath group: 'org.intermine', name: 'plugin', version: System.getProperty("imVersion")
classpath 'com.bmuschko:gradle-cargo-plugin:2.8.0'
}
}
ext {
mineRelease = project.hasProperty('release') ? "." + release : ''
mineName = "yeastmine"
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()
mavenCentral()
jcenter()
maven { url 'https://clojars.org/repo' }
maven {
url 'https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-repo/'
}
}
dependencies {
compile group: "org.intermine", name: "intermine-resources", version: System.getProperty("imVersion")
compile('ant:ant:1.6.5')
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.6'
testCompile group: 'junit', name: 'junit', version: '4.8.2'
}
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"
}