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
When running with Lombok is not an option, you can use the below commands to remove Lombok.
# Move src/*/java to src/*/lombok as required by the pluginforfolderin$(find -type d -wholename '*/src/*/java' -print)do
mv ${folder}${folder/java/lombok}done# Remove Lombok from src/main and src/test
./mvnw org.projectlombok:lombok-maven-plugin:delombok \
-Dlombok.sourceDirectory='${project.basedir}/src/main/lombok'\
-Dlombok.outputDirectory='${project.basedir}/src/main/java'
./mvnw org.projectlombok:lombok-maven-plugin:testDelombok \
-Dlombok.testSourceDirectory='${project.basedir}/src/test/lombok' \
-Dlombok.testOutputDirectory='${project.basedir}/src/test/java'# Remove the copied lombok folders again
find -type d -name lombok -exec rm -rv {} \;
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When running with Lombok is not an option, you can use the below commands to remove Lombok.
Beta Was this translation helpful? Give feedback.
All reactions