Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Feb 17, 2025
1 parent 1e1f3b0 commit e1fc6a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ksp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ dependencies {
api(libs.ksp.api)
ksp(libs.codegen.kotlinpoet) {
version {
strictly("main-20240811.165308-18")
strictly(libs.codegen.kotlinpoet.get().version!!)
}
}
ksp(libs.codegen.ksp) {
version {
strictly("main-20240811.165308-20")
strictly(libs.codegen.ksp.asProvider().get().version!!)
}
}
ksp(libs.codegen.ksp.processor) {
version {
strictly("main-20240811.165308-19")
strictly(libs.codegen.ksp.processor.get().version!!)
}
}
testImplementation(libs.mockk)
Expand Down

0 comments on commit e1fc6a5

Please sign in to comment.