Skip to content

Commit

Permalink
2.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed May 21, 2024
1 parent a752edf commit 39f4b36
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ tasks.withType<JavaCompile>().configureEach {
tasks.withType<Detekt>().configureEach { jvmTarget = libs.versions.jvmTarget.get() }

tasks.withType<DokkaTask>().configureEach {
outputDirectory.set(rootDir.resolve("../docs/0.x"))
outputDirectory.set(rootProject.layout.projectDirectory.dir("docs/2.x"))
dokkaSourceSets.configureEach { skipDeprecated.set(true) }
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ org.gradle.configuration-cache=true
moshix.generateProguardRules=false

# Use new K2 UAST for lint
android.lint.useK2Uast=true
android.lint.useK2Ugast=true
android.experimental.lint.missingBaselineIsEmptyBaseline=true

# Use KSP2
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
kotlin = "2.0.0-RC3"
kotlin = "2.0.0"
kotlinx-serialization = "1.6.3"
ksp = "2.0.0-RC3-1.0.20"
ksp = "2.0.0-1.0.21"
ktfmt = "0.49"
jvmTarget = "17"
moshix = "0.27.0-alpha01"
Expand All @@ -12,14 +12,14 @@ xmlutil = "0.86.3"
[plugins]
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.6" }
dokka = { id = "org.jetbrains.dokka", version = "1.9.20" }
lint = { id = "com.android.lint", version = "8.5.0-beta01" }
lint = { id = "com.android.lint", version = "8.6.0-alpha02" }
mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.28.0" }
moshix = { id = "dev.zacsweers.moshix", version.ref = "moshix" }
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
spotless = { id = "com.diffplug.spotless", version = "6.25.0" }
binaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.14.0" }
binaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.15.0-Beta.2" }
retry = { id = "org.gradle.test-retry", version = "1.5.9" }

[libraries]
Expand Down

0 comments on commit 39f4b36

Please sign in to comment.