I have a standard gradle java project and i use lombok. one of my class has
@NoArgsConstructor(access = AccessLevel.PACKAGE)
but when i run ./gradlew javadoc the reported visibility is public. is there any smart/fast way or do i have to run delombok and run javadoc on delombokked sources? and how to do it with gradle?
gradle 3.3, lombok 1.16.14