Skip to content

Commit b5cb532

Browse files
committed
[FEIGN] Don't include jackson dep's in sbt file when GSON is selected
1 parent 73ad509 commit b5cb532

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/openapi-generator/src/main/resources/Java/libraries/feign/build.sbt.mustache

+4
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,19 @@ lazy val root = (project in file(".")).
1212
"io.swagger" % "swagger-annotations" % "1.6.11" % "compile",
1313
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
1414
"io.github.openfeign" % "feign-core" % "10.12" % "compile",
15+
{{#jackson}}
1516
"io.github.openfeign" % "feign-jackson" % "10.12" % "compile",
17+
{{/jackson}}
1618
"io.github.openfeign" % "feign-slf4j" % "10.12" % "compile",
1719
"io.github.openfeign.form" % "feign-form" % "3.8.0" % "compile",
1820
"io.github.openfeign" % "feign-okhttp" % "10.12" % "compile",
21+
{{#jackson}}
1922
"com.fasterxml.jackson.core" % "jackson-core" % "2.14.3" % "compile",
2023
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.14.3" % "compile",
2124
"com.fasterxml.jackson.core" % "jackson-databind" % "2.14.3" % "compile",
2225
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
2326
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
27+
{{/jackson}}
2428
"com.github.scribejava" % "scribejava-core" % "8.0.0" % "compile",
2529
"com.brsanthu" % "migbase64" % "2.2" % "compile",
2630
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",

0 commit comments

Comments
 (0)