Skip to content

Commit df81ab4

Browse files
Bump feign version to 13.5 from 10.12.
1 parent 0e34d39 commit df81ab4

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ ext {
110110
jackson_databind_nullable_version = "0.2.6"
111111
{{/openApiNullable}}
112112
jakarta_annotation_version = "1.3.5"
113-
feign_version = "10.12"
113+
feign_version = "13.5"
114114
feign_form_version = "3.8.0"
115115
junit_version = "5.7.0"
116116
scribejava_version = "8.0.0"

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ lazy val root = (project in file(".")).
1111
libraryDependencies ++= Seq(
1212
"io.swagger" % "swagger-annotations" % "1.6.11" % "compile",
1313
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
14-
"io.github.openfeign" % "feign-core" % "10.12" % "compile",
14+
"io.github.openfeign" % "feign-core" % "13.5" % "compile",
1515
{{#jackson}}
16-
"io.github.openfeign" % "feign-jackson" % "10.12" % "compile",
16+
"io.github.openfeign" % "feign-jackson" % "13.5" % "compile",
1717
{{/jackson}}
18-
"io.github.openfeign" % "feign-slf4j" % "10.12" % "compile",
18+
"io.github.openfeign" % "feign-slf4j" % "13.5" % "compile",
1919
"io.github.openfeign.form" % "feign-form" % "3.8.0" % "compile",
20-
"io.github.openfeign" % "feign-okhttp" % "10.12" % "compile",
20+
"io.github.openfeign" % "feign-okhttp" % "13.5" % "compile",
2121
{{#jackson}}
2222
"com.fasterxml.jackson.core" % "jackson-core" % "2.17.1" % "compile",
2323
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.17.1" % "compile",

samples/client/echo_api/java/feign-gson/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ext {
104104
swagger_annotations_version = "1.6.11"
105105
jackson_databind_nullable_version = "0.2.6"
106106
jakarta_annotation_version = "1.3.5"
107-
feign_version = "10.12"
107+
feign_version = "13.5"
108108
feign_form_version = "3.8.0"
109109
junit_version = "5.7.0"
110110
scribejava_version = "8.0.0"

samples/client/echo_api/java/feign-gson/build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ lazy val root = (project in file(".")).
1111
libraryDependencies ++= Seq(
1212
"io.swagger" % "swagger-annotations" % "1.6.11" % "compile",
1313
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
14-
"io.github.openfeign" % "feign-core" % "10.12" % "compile",
15-
"io.github.openfeign" % "feign-slf4j" % "10.12" % "compile",
14+
"io.github.openfeign" % "feign-core" % "13.5" % "compile",
15+
"io.github.openfeign" % "feign-slf4j" % "13.5" % "compile",
1616
"io.github.openfeign.form" % "feign-form" % "3.8.0" % "compile",
17-
"io.github.openfeign" % "feign-okhttp" % "10.12" % "compile",
17+
"io.github.openfeign" % "feign-okhttp" % "13.5" % "compile",
1818
"com.github.scribejava" % "scribejava-core" % "8.0.0" % "compile",
1919
"com.brsanthu" % "migbase64" % "2.2" % "compile",
2020
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",

samples/client/petstore/java/feign-no-nullable/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ ext {
105105
jackson_version = "2.17.1"
106106
jackson_databind_version = "2.17.1"
107107
jakarta_annotation_version = "1.3.5"
108-
feign_version = "10.12"
108+
feign_version = "13.5"
109109
feign_form_version = "3.8.0"
110110
junit_version = "5.7.0"
111111
scribejava_version = "8.0.0"

samples/client/petstore/java/feign-no-nullable/build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ lazy val root = (project in file(".")).
1111
libraryDependencies ++= Seq(
1212
"io.swagger" % "swagger-annotations" % "1.6.11" % "compile",
1313
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
14-
"io.github.openfeign" % "feign-core" % "10.12" % "compile",
15-
"io.github.openfeign" % "feign-jackson" % "10.12" % "compile",
16-
"io.github.openfeign" % "feign-slf4j" % "10.12" % "compile",
14+
"io.github.openfeign" % "feign-core" % "13.5" % "compile",
15+
"io.github.openfeign" % "feign-jackson" % "13.5" % "compile",
16+
"io.github.openfeign" % "feign-slf4j" % "13.5" % "compile",
1717
"io.github.openfeign.form" % "feign-form" % "3.8.0" % "compile",
18-
"io.github.openfeign" % "feign-okhttp" % "10.12" % "compile",
18+
"io.github.openfeign" % "feign-okhttp" % "13.5" % "compile",
1919
"com.fasterxml.jackson.core" % "jackson-core" % "2.17.1" % "compile",
2020
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.17.1" % "compile",
2121
"com.fasterxml.jackson.core" % "jackson-databind" % "2.17.1" % "compile",

samples/client/petstore/java/feign/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ ext {
106106
jackson_databind_version = "2.17.1"
107107
jackson_databind_nullable_version = "0.2.6"
108108
jakarta_annotation_version = "1.3.5"
109-
feign_version = "10.12"
109+
feign_version = "13.5"
110110
feign_form_version = "3.8.0"
111111
junit_version = "5.7.0"
112112
scribejava_version = "8.0.0"

samples/client/petstore/java/feign/build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ lazy val root = (project in file(".")).
1111
libraryDependencies ++= Seq(
1212
"io.swagger" % "swagger-annotations" % "1.6.11" % "compile",
1313
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
14-
"io.github.openfeign" % "feign-core" % "10.12" % "compile",
15-
"io.github.openfeign" % "feign-jackson" % "10.12" % "compile",
16-
"io.github.openfeign" % "feign-slf4j" % "10.12" % "compile",
14+
"io.github.openfeign" % "feign-core" % "13.5" % "compile",
15+
"io.github.openfeign" % "feign-jackson" % "13.5" % "compile",
16+
"io.github.openfeign" % "feign-slf4j" % "13.5" % "compile",
1717
"io.github.openfeign.form" % "feign-form" % "3.8.0" % "compile",
18-
"io.github.openfeign" % "feign-okhttp" % "10.12" % "compile",
18+
"io.github.openfeign" % "feign-okhttp" % "13.5" % "compile",
1919
"com.fasterxml.jackson.core" % "jackson-core" % "2.17.1" % "compile",
2020
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.17.1" % "compile",
2121
"com.fasterxml.jackson.core" % "jackson-databind" % "2.17.1" % "compile",

0 commit comments

Comments
 (0)