Bumps the development-dependencies group with 2 updates: com.github.spotbugs and [io.spring.develocity.conventions](https://github.com/spring-io/develocity-conventions). Updates `com.github.spotbugs` from 6.0.23 to 6.0.24 Updates `io.spring.develocity.conventions` from 0.0.21 to 0.0.22 - [Release notes](https://github.com/spring-io/develocity-conventions/releases) - [Commits](https://github.com/spring-io/develocity-conventions/compare/v0.0.21...v0.0.22) --- updated-dependencies: - dependency-name: com.github.spotbugs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: io.spring.develocity.conventions dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
671 B
Groovy
27 lines
671 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'io.spring.develocity.conventions' version '0.0.22' apply false
|
|
}
|
|
|
|
startParameter.noBuildScan = startParameter.taskNames.contains('format')
|
|
|
|
apply plugin: 'io.spring.develocity.conventions'
|
|
|
|
rootProject.name = 'spring-functions-catalog'
|
|
|
|
include 'spring-functions-catalog-bom'
|
|
|
|
['common', 'consumer', 'function', 'supplier'].each { group ->
|
|
def groupDir = file(group)
|
|
groupDir.eachDir { subProject ->
|
|
include "${subProject.name}"
|
|
project(":${subProject.name}").projectDir = new File(groupDir.absolutePath, subProject.name)
|
|
}
|
|
}
|