Humphrey
04/27/2023, 6:00 PMChris Lee
04/27/2023, 6:04 PMannotationProcessor
configuration much as appears to have been done for other configurations.Chris Lee
04/27/2023, 6:05 PMval springBootBom = platform(SpringBootPlugin.BOM_COORDINATES)
implementation(springBootBom)
testImplementation(springBootBom)
testFixturesApi(springBootBom)
annotationProcessor(springBootBom)
developmentOnly(springBootBom)
Humphrey
04/27/2023, 6:06 PMTrevor Stone
04/27/2023, 7:00 PMkapt
instead of annotationProcessor
. This will allow annotations to work on both Kotlin and Java codeTrevor Stone
04/27/2023, 7:00 PMTrevor Stone
04/27/2023, 7:02 PMannotationProcessor
instead of kapt
because you won't use lombok for kotlin codeHumphrey
04/27/2023, 7:03 PMHumphrey
04/27/2023, 7:06 PMkotlin-plugin-lombok
, havent seen that one before. Maybe this is neccessary to do the AnnotationProcessing?Humphrey
04/28/2023, 6:15 AMtapchicoma
04/28/2023, 8:58 AM