Skip to content

Commit

Permalink
Kotlin 2.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Dec 1, 2024
1 parent 69b77a8 commit 2e64584
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
11 changes: 8 additions & 3 deletions cryptography-providers/webcrypto/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@ kotlin {
freeCompilerArgs.add("-Xexpect-actual-classes")
}

sourceSets.commonMain.dependencies {
api(projects.cryptographyCore)
implementation(projects.cryptographyProviderBase)
sourceSets {
commonMain.dependencies {
api(projects.cryptographyCore)
implementation(projects.cryptographyProviderBase)
}
wasmJsMain.dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-browser:0.2")
}
}
}

Expand Down
6 changes: 6 additions & 0 deletions cryptography-random/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@ kotlin {
}
}
}

sourceSets {
wasmJsMain.dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-browser:0.2")
}
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]

kotlin = "2.0.20"
kotlin = "2.1.0"

# kotlin/kotlinx
kotlin-dokka = "1.9.20"
Expand Down
1 change: 1 addition & 0 deletions testtool/plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ kotlin {
}

dependencies {
compileOnly(kotlin("stdlib"))
compileOnly(gradleKotlinDsl())
compileOnly(libs.kotlin.gradle.plugin)
compileOnly(libs.android.gradle.plugin)
Expand Down

0 comments on commit 2e64584

Please sign in to comment.