14 lines
225 B
Groovy
14 lines
225 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'backend'
|
|
|
|
include 'domain'
|
|
include 'apis'
|
|
|