We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b3e896 commit 4fb6845Copy full SHA for 4fb6845
settings.gradle.kts
@@ -1,8 +1,8 @@
1
pluginManagement {
2
repositories {
3
gradlePluginPortal()
4
- val kotlinRepoUrl: String? by settings
5
- kotlinRepoUrl?.let { repoUrl ->
+ val kotlin_repo_url: String? by settings
+ kotlin_repo_url?.let { repoUrl ->
6
if (repoUrl.isNotEmpty()) {
7
maven { url = uri(repoUrl) }
8
}
@@ -15,12 +15,11 @@ rootProject.name = "kotlinx-benchmark"
15
includeBuild("plugin")
16
17
include("runtime")
18
-findProject(":runtime")?.name = "kotlinx-benchmark-runtime"
+project(":runtime").name = "kotlinx-benchmark-runtime"
19
20
include("integration")
21
22
include("examples")
23
include("examples:kotlin-multiplatform")
24
include("examples:java")
25
-include("examples:kotlin")
26
include("examples:kotlin-kts")
0 commit comments