-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
24 lines (20 loc) · 876 Bytes
/
settings.gradle
File metadata and controls
24 lines (20 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
rootProject.name = 'org.kromo.lambdabus'
buildscript {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:${bnd_version}"
classpath "gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:${spotbugs_version}"
classpath "net.ltgt.gradle:gradle-errorprone-plugin:${errorprone_plugin_version}"
classpath "com.diffplug.spotless:spotless-plugin-gradle:${spotless_version}"
classpath "gradle.plugin.com.dorongold.plugins:task-tree:${tasktree_version}"
}
// Add bnd gradle plugin to buildscript classpath of rootProject
def bndPlugin = files(configurations.classpath.files)
gradle.rootProject {
buildscript { dependencies { classpath bndPlugin } }
}
}
apply plugin: 'biz.aQute.bnd.workspace'