Update Gradle & Kotlin & PlatformSDK

- Update Kotlin version to 1.7.0
- Update Gradle dependencies
- Merge legacy code
This commit is contained in:
2022-06-10 17:44:31 +08:00
parent e0e69869ab
commit 79ba9fe878
5 changed files with 22 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
plugins {
id 'java-library'
id 'org.jetbrains.kotlin.jvm'
id 'com.google.devtools.ksp' version '1.6.21-1.0.5'
id 'com.google.devtools.ksp' version '1.7.0-1.0.6'
id 'maven-publish'
id 'signing'
}
@@ -28,7 +28,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
dependencies {
implementation 'com.google.auto.service:auto-service-annotations:1.0.1'
compileOnly 'com.google.devtools.ksp:symbol-processing-api:1.6.21-1.0.5'
compileOnly 'com.google.devtools.ksp:symbol-processing-api:1.7.0-1.0.6'
ksp 'dev.zacsweers.autoservice:auto-service-ksp:1.0.0'
}