19 lines
349 B
Groovy
19 lines
349 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"
|
|
}
|