It turns out the repository is required for a plugin that the project does not use. This commit removes the declaration and adapt CI accordingly. Closes gh-1813
22 lines
374 B
Groovy
22 lines
374 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|