Any idea on some good patterns to use to share cod...
# community-support
z
Any idea on some good patterns to use to share code between
:buildSource
and inside the kotlin source files for a subproject (
ksp-processor/src/main/java
) in a main build?
Copy code
├── :buildSource
└── :ksp-processor
     └── src/main/kotlin
I have some shared code that is needed for gradle task execution, as well as the annotation processor itself
p
Use another included build/project
👍 1
☝️ 1