Files
spring-webflow/settings.gradle
Stéphane Nicoll bedb9493d1 Remove dependency on https://repo.spring.io/plugins-release
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
2024-10-11 11:34:39 +02:00

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"
}