groovy-eclipse
groovy-eclipse copied to clipboard
Using mapstruct and lombok together
I have made java app that needs DTO mapper with groovy + lombok and introduce mapstruct, but it don't generate mapper impl.
Solving this problem, I find this discussion #874 .
Still not fix the bug?
- java version: 1.8
- lombok version: 1.18.12
- mapstruct version: 1.3.1.Final
- groovy-eclipse-complier version: 3.6.0-03
Does your codebase use Groovy and Lombok+Mapstruct in the same source tree? There is a two-phase compilation solution when main sources use Lombok+Mapstruct and test sources use Groovy.
In main source, I use lombok, mapstruct and "groovy" too. Is there solution?