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
29 lines
569 B
Groovy
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"
|
|
}
|