Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Save Test Reports
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-reports
path: '**/build/reports'
Expand Down
11 changes: 5 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ val artifactId: String by project

kotlin {
jvmToolchain(11)
jvm {
withJava()
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
jvm()
listOf(
iosX64(),
iosArm64(),
Expand All @@ -29,6 +24,10 @@ kotlin {
baseName = artifactId
}
}
js {
browser()
nodejs()
}
sourceSets {
val commonMain by getting
val commonTest by getting {
Expand Down
11 changes: 4 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
[versions]
kotlinxCoroutines = "1.7.3"
multimult = "0.2.6"

# Plugin versions
kotlin = "2.0.0"
vanniktechMavenPublish = "0.28.0"
kotlin = "2.1.21"
vanniktechMavenPublish = "0.34.0"

[libraries]
crypto = { group = "com.diglol.crypto", name = "crypto", version = "0.1.5" }
kotlin-test = { group = "org.jetbrains.kotlin", name = "kotlin-test" }
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinxCoroutines" }
kotlinx-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-test", version.ref = "kotlinxCoroutines" }
multimult = { group = "io.github.funkatronics", name = "multimult", version = "0.2.3" }
multimult = { group = "io.github.funkatronics", name = "multimult", version.ref = "multimult" }

[plugins]
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
Expand Down
Loading