You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation generated by mvn javadoc:javadoc is missing the methods auto-generated by Lombok. So, the documentation is missing methods like builder() that are used in our examples.
There's a Maven plugin that helps. I've tried it and it seems to work. The steps are:
Moving the source code from src/main/java to src/main/lombok
The documentation generated by
mvn javadoc:javadoc
is missing the methods auto-generated by Lombok. So, the documentation is missing methods likebuilder()
that are used in our examples.There's a Maven plugin that helps. I've tried it and it seems to work. The steps are:
src/main/java
tosrc/main/lombok
pom.xml
:After that, the javadoc goal produces the full documentation.
The text was updated successfully, but these errors were encountered: