Files
spring-webflow/settings.gradle
Gabor Liptak bce7f0cc91 Update spring-faces to Jakarta EE
FlowResourceResolver.java is removed, since it was deprecated, see
https://github.com/jakartaee/faces/issues/1583

See gh-1794
2023-01-31 23:58:07 +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-js-resources'
include 'spring-faces'
rootProject.children.each {project ->
project.buildFileName = "${project.name}.gradle"
}