We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e1f3b0 commit e1fc6a5Copy full SHA for e1fc6a5
ksp/build.gradle.kts
@@ -14,17 +14,17 @@ dependencies {
14
api(libs.ksp.api)
15
ksp(libs.codegen.kotlinpoet) {
16
version {
17
- strictly("main-20240811.165308-18")
+ strictly(libs.codegen.kotlinpoet.get().version!!)
18
}
19
20
ksp(libs.codegen.ksp) {
21
22
- strictly("main-20240811.165308-20")
+ strictly(libs.codegen.ksp.asProvider().get().version!!)
23
24
25
ksp(libs.codegen.ksp.processor) {
26
27
- strictly("main-20240811.165308-19")
+ strictly(libs.codegen.ksp.processor.get().version!!)
28
29
30
testImplementation(libs.mockk)
0 commit comments