Closed concurrent-recursion closed 1 month ago
I made lombok a non-transitive dependency in the pom file
I made lombok an optional dependency instead of a provided dependency, which prevents it from being a transitive dependency
This keeps the lombok functionality in the project, while removing the dependency from being pulled into downstream projects Fixes issue https://github.com/duosecurity/duo_universal_java/issues/26
See Maven Optional Dependencies Docs
The maven project was compiled and tests completed successfully.
We just got rid of Lombok
I made lombok a non-transitive dependency in the pom file
Description
I made lombok an optional dependency instead of a provided dependency, which prevents it from being a transitive dependency
Motivation and Context
This keeps the lombok functionality in the project, while removing the dependency from being pulled into downstream projects Fixes issue https://github.com/duosecurity/duo_universal_java/issues/26
See Maven Optional Dependencies Docs
How Has This Been Tested?
The maven project was compiled and tests completed successfully.
Types of Changes