- tidy up build scripts to use convention plugins - use centralised repo definition - tidy up some of the build config
16 lines
272 B
Kotlin
16 lines
272 B
Kotlin
rootProject.name = "buildSrc"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|