16 lines
248 B
Kotlin
16 lines
248 B
Kotlin
rootProject.name = "BuildSystem"
|
|
|
|
include("buildsystem-api")
|
|
include("buildsystem-core")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
} |