Bumps the development-dependencies group with 1 update: [io.spring.ge.conventions](https://github.com/spring-io/gradle-enterprise-conventions). Updates `io.spring.ge.conventions` from 0.0.15 to 0.0.16 - [Release notes](https://github.com/spring-io/gradle-enterprise-conventions/releases) - [Commits](https://github.com/spring-io/gradle-enterprise-conventions/compare/v0.0.15...v0.0.16) --- updated-dependencies: - dependency-name: io.spring.ge.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>
21 lines
604 B
Groovy
21 lines
604 B
Groovy
plugins {
|
|
id 'com.gradle.enterprise' version '3.16.2'
|
|
id 'io.spring.ge.conventions' version '0.0.16' apply false
|
|
}
|
|
|
|
startParameter.noBuildScan = startParameter.taskNames.contains('format')
|
|
|
|
apply plugin: 'io.spring.ge.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)
|
|
}
|
|
}
|