Skip to content

Commit 4fb6845

Browse files
committed
fix settings.gradle.kts and remove kotlin example
1 parent 6b3e896 commit 4fb6845

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

settings.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
pluginManagement {
22
repositories {
33
gradlePluginPortal()
4-
val kotlinRepoUrl: String? by settings
5-
kotlinRepoUrl?.let { repoUrl ->
4+
val kotlin_repo_url: String? by settings
5+
kotlin_repo_url?.let { repoUrl ->
66
if (repoUrl.isNotEmpty()) {
77
maven { url = uri(repoUrl) }
88
}
@@ -15,12 +15,11 @@ rootProject.name = "kotlinx-benchmark"
1515
includeBuild("plugin")
1616

1717
include("runtime")
18-
findProject(":runtime")?.name = "kotlinx-benchmark-runtime"
18+
project(":runtime").name = "kotlinx-benchmark-runtime"
1919

2020
include("integration")
2121

2222
include("examples")
2323
include("examples:kotlin-multiplatform")
2424
include("examples:java")
25-
include("examples:kotlin")
2625
include("examples:kotlin-kts")

0 commit comments

Comments
 (0)