Files
spring-webflow/settings.gradle
Stéphane Nicoll 1ffc41596b Upgrade to Develocity Conventions 0.0.22
This commit updates to the latest develocity conventions plugin. This
has the advantage, since 0.0.21, to include the correct relevant Gradle
Enterprise plugin.

Closes gh-1808
2024-10-10 09:42:12 +02:00

29 lines
569 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
maven {
name "spring-plugins"
url "https://repo.spring.io/plugins-release/"
credentials {
username System.env.SPRING_REPOSITORY_USERNAME
password System.env.SPRING_REPOSITORY_PASSWORD
}
}
}
}
plugins {
id 'io.spring.develocity.conventions' version '0.0.22'
}
rootProject.name = 'webflow'
include 'spring-binding'
include 'spring-webflow'
include 'spring-js-resources'
include 'spring-faces'
rootProject.children.each {project ->
project.buildFileName = "${project.name}.gradle"
}