Rename anvil modules to annotations and codegen

This commit is contained in:
Benoit Marty 2025-09-05 14:12:07 +02:00
parent 606b1d132e
commit 4e720cecb1
134 changed files with 130 additions and 142 deletions

View file

@ -29,9 +29,9 @@ fun Project.setupDependencyInjection(
applyPluginIfNeeded(libs.plugins.ksp)
// Annotations to generate DI code for Appyx nodes
dependencies.implementation(project.project(":anvilannotations"))
dependencies.implementation(project.project(":annotations"))
// Code generator for the annotations above
dependencies.add("ksp", project.project(":anvilcodegen"))
dependencies.add("ksp", project.project(":codegen"))
}
}