Files
spring-integration-samples/settings.gradle
Eric Haag 3d22d656cc Connect build to ge.spring.io (#354)
This change publishes a build scan to ge.spring.io for every local
build from an authenticated Spring committer and for CI where
appropriate access tokens are available. The build will not fail if
publishing fails.

This change also allows the build to benefit from remote build caching,
providing faster builds for all contributors.

Additionally, the project will have access to all features of Gradle
Enterprise such as:

- Dashboards to view all historical build scans, along with performance
   trends over time
- Build failure analytics for enhanced investigation and diagnosis of
   build failures
- Test failure analytics to better understand trends and causes around
   slow, failing, and flaky tests
2023-08-15 15:10:16 -04:00

31 lines
777 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/release' }
}
}
plugins {
id 'com.gradle.enterprise' version '3.14.1'
id 'io.spring.ge.conventions' version '0.0.13'
}
rootProject.name = 'spring-integration-samples'
['advanced', 'applications', 'basic', 'intermediate', 'dsl'].each {
def projectDir = new File(rootDir, it)
include ":${it}"
projectDir.eachDir { dir ->
if (!dir.name.startsWith('.') && 'splunk' != dir.name) {
include ":${dir.name}"
project(":${dir.name}").projectDir = new File(projectDir.absolutePath, dir.name)
if ('cafe' == dir.name) {
dir.eachDir { cafe ->
include ":${cafe.name}"
project(":${cafe.name}").projectDir = new File(dir.absolutePath, cafe.name)
}
}
}
}
}