Skip to content

Commit

Permalink
fix(deps): update kotlin monorepo to v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 8, 2023
1 parent b25fcfc commit 2251a89
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion example/AndroidOnlyExample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp") version "1.8.21-1.0.11"
id("org.jetbrains.kotlin.plugin.serialization") version "1.8.21"
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.0"
id("de.jensklingenberg.ktorfit") version "1.0.0"

}
Expand Down
2 changes: 1 addition & 1 deletion example/AndroidOnlyExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
plugins {
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
}
4 changes: 2 additions & 2 deletions example/MultiplatformExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0")
classpath("com.android.tools.build:gradle:7.3.1")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.8.21")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.9.0")

}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version("1.8.22")
kotlin("kapt") version("1.8.22")
kotlin("jvm") version("1.9.0")
kotlin("kapt") version("1.9.0")
id("java-gradle-plugin")
`maven-publish`
id("com.gradle.plugin-publish") version "1.2.0"
Expand Down Expand Up @@ -31,7 +31,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.22")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.9.0")
}

gradlePlugin {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#versions
kotlinVersion=1.8.22
kotlinVersion=1.9.0

org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=8g

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ autoService = "1.1.1"
coroutines = "1.6.4"
detekt = "1.23.0"
kctfork = "0.2.1"
kotlin = "1.8.22"
kotlin = "1.9.0"
kotlinPoet = "1.14.2"
kspVersion = "1.8.22-1.0.11"
ktorfit = "1.4.2"
Expand Down

0 comments on commit 2251a89

Please sign in to comment.