Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure Lombok is not included transitively #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

FWDekker
Copy link

Fixes #30. That is, ensures that other tools that rely on dateparser do not unnecessarily include the entire Lombok library.

As explained in the Maven FAQ:

How do I prevent including JARs in WEB-INF/lib? I need a "compile only" scope!

The scope you should use for this is provided. This indicates to Maven that the dependency will be provided at run time by its container or the JDK, for example.

Dependencies with this scope will not be passed on transitively, nor will they be bundled in a package such as a WAR, or included in the runtime classpath.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Lombok dependency leaking into projects that use Dateparser
1 participant