Bumps com.gradle.develocity from 3.17.5 to 3.17.6. --- updated-dependencies: - dependency-name: com.gradle.develocity dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.6 KiB
Groovy
51 lines
1.6 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://repo.spring.io/release" }
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.gradle.develocity' version '3.17.6'
|
|
id 'io.spring.ge.conventions' version '0.0.17' apply false
|
|
}
|
|
|
|
startParameter.noBuildScan = startParameter.taskNames.contains('format')
|
|
|
|
apply plugin: 'io.spring.ge.conventions'
|
|
|
|
include 'spring-pulsar'
|
|
include 'spring-pulsar-bom'
|
|
include 'spring-pulsar-cache-provider'
|
|
include 'spring-pulsar-cache-provider-caffeine'
|
|
include 'spring-pulsar-reactive'
|
|
include 'spring-pulsar-dependencies'
|
|
include 'spring-pulsar-sample-apps:sample-imperative-produce-consume'
|
|
include 'spring-pulsar-sample-apps:sample-failover-custom-router'
|
|
include 'spring-pulsar-sample-apps:sample-pulsar-functions:sample-signup-app'
|
|
include 'spring-pulsar-sample-apps:sample-pulsar-functions:sample-signup-function'
|
|
include 'spring-pulsar-sample-apps:sample-reactive'
|
|
include 'spring-pulsar-sample-apps:sample-pulsar-binder'
|
|
include 'spring-pulsar-sample-apps:sample-pulsar-reader'
|
|
include 'spring-pulsar-docs'
|
|
include 'spring-pulsar-test'
|
|
include 'integration-tests'
|
|
|
|
rootProject.name = "spring-pulsar-dist"
|
|
|
|
rootProject.children.findAll { !it.name.startsWith('sample-') }
|
|
.each {project -> project.buildFileName = "${project.name}.gradle" }
|
|
|
|
settings.gradle.projectsLoaded {
|
|
develocity {
|
|
buildScan {
|
|
// only publish build scan if explicitly requested w/ --scan
|
|
publishing.onlyIf { false }
|
|
termsOfUseUrl = 'https://gradle.com/terms-of-service'
|
|
termsOfUseAgree = 'yes'
|
|
}
|
|
}
|
|
}
|