Update compose to 2023.08.00

This commit is contained in:
Oleksandr Balan
2023-09-06 22:37:10 +02:00
parent 9addca8f27
commit 23a394897a
35 changed files with 431 additions and 332 deletions

View File

@@ -0,0 +1,19 @@
plugins {
`kotlin-dsl`
}
java {
toolchain {
val version = libs.versions.java.toolchain.get()
languageVersion.set(JavaLanguageVersion.of(version))
}
}
gradlePlugin {
plugins {
register("conventionJvmToolchain") {
id = "convention.jvm.toolchain"
implementationClass = "JvmToolchainConventionPlugin"
}
}
}