Skip to content
Open
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
8 changes: 4 additions & 4 deletions core-modules-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
// find details in the "Readme" file.

plugins {
kotlin("jvm") version "2.3.0" apply false
kotlin("multiplatform") version "2.3.0" apply false
id("com.android.library") version "8.13.2" apply false
id("com.vanniktech.maven.publish") version "0.35.0" apply false
kotlin("jvm") version "2.3.10" apply false
kotlin("multiplatform") version "2.3.10" apply false
id("com.android.library") version "9.1.0" apply false
id("com.vanniktech.maven.publish") version "0.36.0" apply false
}

group = "de.gematik.openhealth"
Expand Down
Binary file modified core-modules-kotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 2 additions & 4 deletions core-modules-kotlin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# SPDX-License-Identifier: CC0-1.0

#Tue Nov 18 11:43:15 CET 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
56 changes: 32 additions & 24 deletions core-modules-kotlin/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

203 changes: 93 additions & 110 deletions core-modules-kotlin/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core-modules-kotlin/healthcard-testkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ kotlin {
kotlin.srcDir(replayFixturesDir)
dependencies {
implementation(project(":healthcard"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.10.0")
}
}
val jvmMain by getting
Expand Down
4 changes: 2 additions & 2 deletions core-modules-kotlin/healthcard/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ kotlin {
dependencies {
implementation(project(":healthcard-testkit"))
implementation(kotlin("test"))
implementation("androidx.test.ext:junit:1.2.1")
implementation("androidx.test:runner:1.6.2")
implementation("androidx.test.ext:junit:1.3.0")
implementation("androidx.test:runner:1.7.0")
}
}
val jvmTest by getting {
Expand Down