dateparser
dateparser copied to clipboard
Lombok dependency leaking into projects that use Dateparser
Lombok is required at compile time only. The dependency should be configured as provided.
See the documentation here: https://projectlombok.org/setup/maven
+1
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.