dateparser icon indicating copy to clipboard operation
dateparser copied to clipboard

Lombok dependency leaking into projects that use Dateparser

Open sergeykad opened this issue 2 years ago • 2 comments

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

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

sergeykad avatar Feb 21 '23 08:02 sergeykad

+1

Walrus2028 avatar Oct 16 '23 08:10 Walrus2028

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.

fwdekker avatar Jan 16 '24 20:01 fwdekker