Files
spring-webflow/settings.gradle
Ian Young 3f8c133ad1 Remove spring-faces from build
Porting the JavaServer Faces support forward to Jakarta Server Faces
is outside my area of competence. Hopefully, someone with knowledge
of this area will be able to step up later.
2022-07-14 14:26:27 +01:00

18 lines
347 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"
}