Files
spring-webflow/settings.gradle
Brian Clozel 780bb68bdb Move build files into each module
This commit moves each project build configuration into its own file
and keeps the common configuration in the root project.
2020-05-01 07:36:27 +01:00

18 lines
345 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/plugins-release' }
}
}
rootProject.name = 'webflow'
include 'spring-binding'
include 'spring-webflow'
include 'spring-faces'
include 'spring-js-resources'
rootProject.children.each {project ->
project.buildFileName = "${project.name}.gradle"
}