Skip to content

Commit

Permalink
fix: Fix compilation failures
Browse files Browse the repository at this point in the history
  • Loading branch information
phinner committed Sep 16, 2024
1 parent 6dc3497 commit 41c60bc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ tasks.shadowJar {
from(rootProject.file("LICENSE.md")) { into("META-INF") }
}

tasks.dexJar {
d8Version = "8.5.10"
}

tasks.mergeJar {
archiveFileName.set("kotlin-runtime.jar")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kotlinx-serialization = "1.7.2"
spotless = "6.25.0"
indra = "3.1.3"
shadow = "8.1.1"
toxopid = "4.0.2"
toxopid = "4.1.0-SNAPSHOT"

[libraries]
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
Expand Down
16 changes: 16 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven("https://maven.xpdustry.com/snapshots") {
name = "xpdustry-snapshots"
mavenContent { snapshotsOnly() }
}
mavenLocal()
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

rootProject.name = "kotlin-runtime"

0 comments on commit 41c60bc

Please sign in to comment.