15 lines
265 B
Kotlin
15 lines
265 B
Kotlin
rootProject.name = "gradle-tools"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven("https://repo.kotlin.link")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version("1.0.0")
|
|
}
|
|
|