Skip to content

Commit

Permalink
fix settings.gradle.kts and remove kotlin example
Browse files Browse the repository at this point in the history
  • Loading branch information
wldeh committed Sep 6, 2023
1 parent 6b3e896 commit 4fb6845
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pluginManagement {
repositories {
gradlePluginPortal()
val kotlinRepoUrl: String? by settings
kotlinRepoUrl?.let { repoUrl ->
val kotlin_repo_url: String? by settings
kotlin_repo_url?.let { repoUrl ->
if (repoUrl.isNotEmpty()) {
maven { url = uri(repoUrl) }
}
Expand All @@ -15,12 +15,11 @@ rootProject.name = "kotlinx-benchmark"
includeBuild("plugin")

include("runtime")
findProject(":runtime")?.name = "kotlinx-benchmark-runtime"
project(":runtime").name = "kotlinx-benchmark-runtime"

include("integration")

include("examples")
include("examples:kotlin-multiplatform")
include("examples:java")
include("examples:kotlin")
include("examples:kotlin-kts")

0 comments on commit 4fb6845

Please sign in to comment.