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 23 forks source link

Lombok dependency leaking into projects that use Dateparser #30

Open sergeykad opened 1 year ago

sergeykad commented 1 year ago

Lombok is required at compile time only. The dependency should be configured as provided.

See the documentation here: https://projectlombok.org/setup/maven

Walrus2028 commented 11 months ago

+1

FWDekker commented 8 months ago

For what it's worth, until this issue has been fixed, you can change your dependency in your build.gradle.kts to

implementation("com.github.sisyphsu", "dateparser", "1.0.11") {
    exclude(group = "org.projectlombok", module = "lombok")
}

to remove the dependency from your classpath.