sisyphsu / dateparser

dateparser is a smart and high-performance date parser library, it supports hundreds of different formats, nearly all format that we may used. And this is also a showcase for "retree" algorithm.
MIT License
95 stars 24 forks source link

Ensure Lombok is not included transitively #36

Open FWDekker opened 6 months ago

FWDekker commented 6 months ago

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.