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