blob: 8766dc5ab07b88300e7adb055e0dd93b5677c17e [file] [log] [blame]
/*
* Master Gradle build script
*
* Depends on bndWorkspace and bndURI properties set by settings.gradle.
*/
/* Add bnd as a script dependency */
buildscript {
dependencies {
classpath files(bndURI)
}
}
/* Configure the subprojects */
subprojects {
def bndProject = bndWorkspace.getProject(name)
if (bndProject != null) {
plugins.apply 'biz.aQute.bnd'
}
}