Newer
Older
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
evaluationDependsOn(':common')
evaluationDependsOn(':openbis_api')
evaluationDependsOn(':openbis-common')
evaluationDependsOn(':authentication')
evaluationDependsOn(':dbmigration')
evaluationDependsOn(':openbis')
evaluationDependsOn(':datastore_server')
apply from: 'http://svncisd.ethz.ch/repos/cisd/gradle/trunk/javaproject.gradle'
dependencies {
compile project(':datastore_server'),
'openbis:openbis-mobile:+'
testCompile project(path: ':datastore_server', configuration: 'tests')
}
sourceSets {
test {
resources {
srcDirs = ['source/java']
}
}
}
task plasmidZip(type: Zip) {
baseName 'datastore_server_plugin-plasmid'
from (jar.archivePath) {
into 'datastore_server/lib'
}
from('source/core-plugins') {
into 'core-plugins'
}
rename 'plasmid.*jar', 'datastore_server_plugin-plasmid.jar'
}
build.dependsOn plasmidZip