diff --git a/samples/grpc-app/build.gradle.kts b/samples/grpc-app/build.gradle.kts index ebcbf809a..b7bb37f8c 100644 --- a/samples/grpc-app/build.gradle.kts +++ b/samples/grpc-app/build.gradle.kts @@ -4,7 +4,7 @@ plugins { kotlin("jvm") version "2.2.0" - id("org.jetbrains.kotlinx.rpc.plugin") version "0.10.0-grpc-121" + id("org.jetbrains.kotlinx.rpc.plugin") version "0.10.0-grpc-122" } group = "kotlinx.rpc.sample" @@ -20,10 +20,10 @@ kotlin { } dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-rpc-grpc-core:0.10.0-grpc-121") + implementation("org.jetbrains.kotlinx:kotlinx-rpc-grpc-core:0.10.0-grpc-122") implementation("ch.qos.logback:logback-classic:1.5.18") - implementation("io.grpc:grpc-netty:1.73.0") - implementation("io.grpc:grpc-kotlin-stub:1.4.1") + implementation("io.grpc:grpc-netty:1.74.0") + implementation("io.grpc:grpc-kotlin-stub:1.4.3") } rpc { diff --git a/samples/grpc-app/gradle/wrapper/gradle-wrapper.jar b/samples/grpc-app/gradle/wrapper/gradle-wrapper.jar index 9bbc975c7..1b33c55ba 100644 Binary files a/samples/grpc-app/gradle/wrapper/gradle-wrapper.jar and b/samples/grpc-app/gradle/wrapper/gradle-wrapper.jar differ diff --git a/samples/grpc-app/gradle/wrapper/gradle-wrapper.properties b/samples/grpc-app/gradle/wrapper/gradle-wrapper.properties index ff23a68d7..d4081da47 100644 --- a/samples/grpc-app/gradle/wrapper/gradle-wrapper.properties +++ b/samples/grpc-app/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/samples/grpc-app/gradlew b/samples/grpc-app/gradlew index faf93008b..23d15a936 100755 --- a/samples/grpc-app/gradlew +++ b/samples/grpc-app/gradlew @@ -114,7 +114,7 @@ case "$( uname )" in #( NONSTOP* ) nonstop=true ;; esac -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar +CLASSPATH="\\\"\\\"" # Determine the Java command to use to start the JVM. @@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ "$@" # Stop when "xargs" is not available. diff --git a/samples/grpc-app/gradlew.bat b/samples/grpc-app/gradlew.bat index 9d21a2183..db3a6ac20 100644 --- a/samples/grpc-app/gradlew.bat +++ b/samples/grpc-app/gradlew.bat @@ -70,11 +70,11 @@ goto fail :execute @rem Setup the command line -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar +set CLASSPATH= @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* :end @rem End local scope for the variables with windows NT shell diff --git a/samples/ktor-all-platforms-app/gradle/libs.versions.toml b/samples/ktor-all-platforms-app/gradle/libs.versions.toml index 820c4b13c..ea4672efc 100644 --- a/samples/ktor-all-platforms-app/gradle/libs.versions.toml +++ b/samples/ktor-all-platforms-app/gradle/libs.versions.toml @@ -1,25 +1,25 @@ [versions] kotlin = "2.2.0" -agp = "8.11.0-alpha07" +agp = "8.12.0" android-compileSdk = "36" android-minSdk = "24" android-targetSdk = "36" androidx-activityCompose = "1.10.1" androidx-appcompat = "1.7.1" androidx-constraintlayout = "2.2.1" -androidx-core-ktx = "1.16.0" -androidx-espresso-core = "3.6.1" +androidx-core-ktx = "1.17.0" +androidx-espresso-core = "3.7.0" androidx-material = "1.12.0" -androidx-test-junit = "1.2.1" -compose = "1.8.3" +androidx-test-junit = "1.3.0" +compose = "1.9.0" compose-plugin = "1.8.2" junit = "4.13.2" -ktor = "3.2.1" +ktor = "3.2.3" logback = "1.5.18" -serialization = "1.8.1" +serialization = "1.9.0" coroutines = "1.10.2" -kotlinx-rpc = "0.9.1" +kotlinx-rpc = "0.10.0-grpc-122" [libraries] # kotlin diff --git a/samples/ktor-all-platforms-app/gradle/wrapper/gradle-wrapper.properties b/samples/ktor-all-platforms-app/gradle/wrapper/gradle-wrapper.properties index ff23a68d7..d4081da47 100644 --- a/samples/ktor-all-platforms-app/gradle/wrapper/gradle-wrapper.properties +++ b/samples/ktor-all-platforms-app/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/samples/ktor-android-app/gradle/libs.versions.toml b/samples/ktor-android-app/gradle/libs.versions.toml index 284370740..b6b3915b2 100644 --- a/samples/ktor-android-app/gradle/libs.versions.toml +++ b/samples/ktor-android-app/gradle/libs.versions.toml @@ -1,21 +1,21 @@ [versions] -agp = "8.11.0-alpha07" +agp = "8.12.0" kotlin = "2.2.0" androidx-activityCompose = "1.10.1" androidx-appcompat = "1.7.1" androidx-constraintlayout = "2.2.1" -androidx-core-ktx = "1.16.0" -androidx-test-junit = "1.2.1" -compose = "1.8.3" +androidx-core-ktx = "1.17.0" +androidx-test-junit = "1.3.0" +compose = "1.9.0" compose-plugin = "1.5.14" # https://mvnrepository.com/artifact/androidx.compose.compiler/compiler -compose-bom = "2025.06.01" +compose-bom = "2025.08.00" material3 = "1.3.2" junit = "4.13.2" -ktor = "3.2.1" -kotlinx-serialization-json = "1.8.1" +ktor = "3.2.3" +kotlinx-serialization-json = "1.9.0" kotlinx-coroutines-core = "1.10.2" logback = "1.5.18" -kotlinx-rpc = "0.9.1" +kotlinx-rpc = "0.10.0-grpc-122" [libraries] # kotlin diff --git a/samples/ktor-android-app/gradle/wrapper/gradle-wrapper.properties b/samples/ktor-android-app/gradle/wrapper/gradle-wrapper.properties index ff23a68d7..d4081da47 100644 --- a/samples/ktor-android-app/gradle/wrapper/gradle-wrapper.properties +++ b/samples/ktor-android-app/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/samples/ktor-web-app/gradle/libs.versions.toml b/samples/ktor-web-app/gradle/libs.versions.toml index 27366548f..c75f60b7f 100644 --- a/samples/ktor-web-app/gradle/libs.versions.toml +++ b/samples/ktor-web-app/gradle/libs.versions.toml @@ -1,11 +1,11 @@ [versions] kotlin = "2.2.0" -kotlin-wrappers-bom = "2025.6.11" -ktor = "3.2.1" -kotlinx-serialization-json = "1.8.1" +kotlin-wrappers-bom = "2025.8.12" +ktor = "3.2.3" +kotlinx-serialization-json = "1.9.0" kotlinx-coroutines-core = "1.10.2" logback = "1.5.18" -kotlinx-rpc = "0.9.1" +kotlinx-rpc = "0.10.0-grpc-122" [libraries] # kotlin diff --git a/samples/ktor-web-app/gradle/wrapper/gradle-wrapper.properties b/samples/ktor-web-app/gradle/wrapper/gradle-wrapper.properties index ff23a68d7..d4081da47 100644 --- a/samples/ktor-web-app/gradle/wrapper/gradle-wrapper.properties +++ b/samples/ktor-web-app/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/samples/simple-ktor-app/build.gradle.kts b/samples/simple-ktor-app/build.gradle.kts index 431b01f68..c3cb4b997 100644 --- a/samples/simple-ktor-app/build.gradle.kts +++ b/samples/simple-ktor-app/build.gradle.kts @@ -5,8 +5,8 @@ plugins { kotlin("jvm") version "2.2.0" kotlin("plugin.serialization") version "2.2.0" - id("io.ktor.plugin") version "3.2.1" - id("org.jetbrains.kotlinx.rpc.plugin") version "0.9.1" + id("io.ktor.plugin") version "3.3.0-eap-115" + id("org.jetbrains.kotlinx.rpc.plugin") version "0.10.0-grpc-122" } group = "kotlinx.rpc.sample" @@ -28,12 +28,12 @@ kotlin { } dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.9.1") - implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.9.1") - implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.9.1") + implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.10.0-grpc-122") + implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.10.0-grpc-122") + implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.10.0-grpc-122") - implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.9.1") - implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.9.1") + implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.10.0-grpc-122") + implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.10.0-grpc-122") implementation("io.ktor:ktor-client-cio") implementation("io.ktor:ktor-server-netty-jvm") diff --git a/samples/simple-ktor-app/gradle/wrapper/gradle-wrapper.properties b/samples/simple-ktor-app/gradle/wrapper/gradle-wrapper.properties index ff23a68d7..d4081da47 100644 --- a/samples/simple-ktor-app/gradle/wrapper/gradle-wrapper.properties +++ b/samples/simple-ktor-app/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME