We are using KAPT with map struct for a kotlin spr...
# kapt
r
We are using KAPT with map struct for a kotlin springboot project with gradle as build tool
Copy code
implementation('org.mapstruct:mapstruct:1.5.5.Final')
kapt('org.mapstruct:mapstruct-processor:1.5.5.Final')
Wanted to know if there is a way to restrict the annotation processing to be applied only to src code produced by the us and exclude the 3rd party libraries.
t
Afaik it is not possible
r
Ok. Thanks for sharing that.