Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
romainguy committed May 29, 2024
1 parent 55350f0 commit 32f6975
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
13 changes: 7 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.jetbrains.compose)
alias(libs.plugins.compose.compiler)
}

repositories {
Expand All @@ -15,12 +16,13 @@ repositories {
}

kotlin {
jvm {
jvmToolchain {
vendor = JvmVendorSpec.JETBRAINS
languageVersion = JavaLanguageVersion.of(17)
}
jvm()

jvmToolchain {
vendor = JvmVendorSpec.JETBRAINS
languageVersion = JavaLanguageVersion.of(17)
}

sourceSets {
val jvmMain by getting {
dependencies {
Expand Down Expand Up @@ -52,7 +54,6 @@ kotlin {
implementation(libs.truth)
}
}

}
}

Expand Down
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
collection = "1.4.0"
compose = "1.6.10-rc03"
compose = "1.6.10"
jewel = "0.19.3"
jna = "5.14.0"
junit4 = "4.13.2"
kotlin = "1.9.23"
lifecycle = "2.8.0-rc02"
kotlin = "2.0.0"
lifecycle = "2.8.0"
rstaui = "3.3.1"
rsyntaxtextarea="3.4.0"
skiko="0.8.4"
Expand All @@ -32,4 +32,5 @@ truth = { group = "com.google.truth", name = "truth", version.ref = "truth" }

[plugins]
jetbrains-compose = { id = "org.jetbrains.compose", version.ref = "compose" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }

0 comments on commit 32f6975

Please sign in to comment.