forked from bndtools/bndtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (49 loc) · 1.35 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
/*
* Master Gradle build script
*/
import aQute.lib.io.IO
/* Configure the subprojects */
subprojects {
if (plugins.hasPlugin('biz.aQute.bnd')) {
group bnd('-groupid')
version bnd('base.version')
/* test folders are not part of jar but used by unit tests */
def testfolders = ['testresources/', 'testdata/']
jar {
projectDirInputsExcludes.add('.*')
projectDirInputsExcludes.addAll(testfolders)
}
test {
testLogging {
exceptionFormat 'full'
}
inputs.files (fileTree(projectDir) {
include testfolders
exclude {
def f = it.file
if (f.directory && f.list().length == 0) {
return true
}
try {
return "git check-ignore ${f}".execute().waitFor() == 0
} catch (Exception e) {
return false
}
}
}).withPropertyName('testFolders')
if (System.properties['maven.repo.local']) {
systemProperty 'maven.repo.local', IO.getFile(gradle.startParameter.currentDir, System.properties['maven.repo.local'])
}
}
}
}
wrapper {
jarFile = rootProject.file('.gradle-wrapper/gradle-wrapper.jar')
}
task buildscriptDependencies {
doLast {
println "bnd_plugin: ${bnd_plugin}"
println "bnd_repourl: ${bnd_repourl}"
println buildscript.configurations.classpath.asPath
}
}