Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Apr 11, 2024
1 parent bca12eb commit 3853ac2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ kotlin {
}
}

lint {
baseline = file("lint-baseline.xml")
}

moshi { enableSealed.set(true) }

// We have a couple flaky tests on CI right now
Expand Down
7 changes: 7 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ org.gradle.configureondemand=true
org.gradle.configuration-cache=true
moshix.generateProguardRules=false

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

# Use KSP2
ksp.useKSP2=true

POM_NAME=Kotlin CLI Util
POM_ARTIFACT_ID=kotlin-cli-util
POM_PACKAGING=jar
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[versions]
kotlin = "2.0.0-Beta5"
kotlin = "2.0.0-RC1"
kotlinx-serialization = "1.6.3"
ksp = "2.0.0-Beta5-1.0.19"
ksp = "2.0.0-RC1-1.0.20"
ktfmt = "0.47"
jvmTarget = "17"
moshix = "0.26.0-alpha02"
moshix = "0.26.0-alpha03"
moshi = "1.15.1"
tikxml = "0.8.15"
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.3.2" }
lint = { id = "com.android.lint", version = "8.5.0-alpha04" }
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" }
Expand Down

0 comments on commit 3853ac2

Please sign in to comment.