88e31cd1ac
See: https://docs.gradle.org/current/userguide/sharing_build_logic_between_subprojects.html#sec:convention_plugins
26 lines
403 B
Plaintext
26 lines
403 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "kotlin-result"
|
|
|
|
include(
|
|
"benchmarks",
|
|
"example",
|
|
"kotlin-result",
|
|
"kotlin-result-coroutines"
|
|
)
|