Skip to content

Commit

Permalink
fix: tag lombok as a provided dependency
Browse files Browse the repository at this point in the history
Avoid lombok "leak" to other projects builds (that break
for instance java 16 support).
  • Loading branch information
ptitFicus committed Jul 15, 2021
1 parent 830b51c commit 132e23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.datatype" % "jackson-datatype-jdk8" % jacksonVersion,
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % jacksonVersion,
"org.projectlombok" % "lombok" % "1.18.4",
"org.projectlombok" % "lombok" % "1.18.4" % Provided,
"com.novocode" % "junit-interface" % "0.11" % Test,
"org.assertj" % "assertj-core" % "3.10.0" % Test,
"com.github.everit-org.json-schema" % "org.everit.json.schema" % "1.12.1" % Test
Expand Down

0 comments on commit 132e23e

Please sign in to comment.