2020-05-11 09:41:00 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2021-09-23 15:46:11 +00:00
|
|
|
mavenCentral()
|
2020-05-11 09:41:00 +00:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
2023-04-03 12:14:23 +00:00
|
|
|
|
|
|
|
plugins {
|
2024-03-02 23:29:17 +00:00
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
2023-04-03 12:14:23 +00:00
|
|
|
}
|
2024-03-02 21:37:21 +00:00
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "kotlin-result"
|
|
|
|
|
|
|
|
include(
|
|
|
|
"benchmarks",
|
|
|
|
"example",
|
|
|
|
"kotlin-result",
|
|
|
|
"kotlin-result-coroutines"
|
|
|
|
)
|