Files
spring-pulsar/settings.gradle
Chris Bono 755f25bda1 Update to Spring Boot 3.4.0-M1 (#764)
NOTE: Also had to update to SCSt 4.2.0-SNAPSHOT to workaround
https://github.com/spring-cloud/spring-cloud-function/issues/1149

Resolves #758
2024-08-09 22:59:59 -05:00

52 lines
1.6 KiB
Groovy

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url "https://repo.spring.io/release" }
maven { url "https://repo.spring.io/milestone" }
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'
}
}
}