Skip to content

Commit f64caf4

Browse files
committed
bump jackson to 2.10.1, update samples
1 parent 3300722 commit f64caf4

File tree

37 files changed

+150
-144
lines changed

37 files changed

+150
-144
lines changed

modules/swagger-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
</reporting>
201201
<properties>
202202
<diffutils-version>1.3.0</diffutils-version>
203-
<swagger-codegen-v2-version>2.4.9</swagger-codegen-v2-version>
203+
<swagger-codegen-v2-version>2.4.10-SNAPSHOT</swagger-codegen-v2-version>
204204
</properties>
205205
<dependencies>
206206
<dependency>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.12-SNAPSHOT
1+
3.0.14-SNAPSHOT

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ if(hasProperty('target') && target == 'android') {
9595

9696
ext {
9797
swagger_annotations_version = "2.0.0"
98-
jackson_version = "2.9.10"
98+
jackson_version = "2.10.1"
9999
threepane_version = "2.6.4"
100100
feign_version = "9.4.0"
101101
feign_form_version = "2.1.0"

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ lazy val root = (project in file(".")).
1414
"com.netflix.feign" % "feign-jackson" % "9.4.0" % "compile",
1515
"com.netflix.feign" % "feign-slf4j" % "9.4.0" % "compile",
1616
"io.github.openfeign.form" % "feign-form" % "2.1.0" % "compile",
17-
"com.fasterxml.jackson.core" % "jackson-core" % "2.9.10" % "compile",
18-
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.9.10" % "compile",
19-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.10" % "compile",
20-
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
17+
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.1" % "compile",
18+
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.1" % "compile",
19+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.1" % "compile",
20+
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.10.1" % "compile",
2121
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.2" % "compile",
2222
"com.brsanthu" % "migbase64" % "2.2" % "compile",
2323
"junit" % "junit" % "4.12" % "test",

samples/client/petstore/java/feign/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
<swagger-core-version>2.0.0</swagger-core-version>
256256
<feign-version>9.4.0</feign-version>
257257
<feign-form-version>2.1.0</feign-form-version>
258-
<jackson-version>2.9.10</jackson-version>
258+
<jackson-version>2.10.1</jackson-version>
259259
<jackson-threetenbp-version>2.6.4</jackson-threetenbp-version>
260260
<junit-version>4.12</junit-version>
261261
<maven-plugin-version>1.0.0</maven-plugin-version>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.12-SNAPSHOT
1+
3.0.14-SNAPSHOT

samples/client/petstore/java/jersey2-java6/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ if(hasProperty('target') && target == 'android') {
9494

9595
ext {
9696
swagger_annotations_version = "2.0.0"
97-
jackson_version = "2.9.10"
98-
jersey_version = "2.25.1"
97+
jackson_version = "2.10.1"
98+
jersey_version = "2.26"
9999
commons_io_version=2.5
100100
commons_lang3_version=3.6
101101
junit_version = "4.12"

samples/client/petstore/java/jersey2-java6/build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ lazy val root = (project in file(".")).
1010
resolvers += Resolver.mavenLocal,
1111
libraryDependencies ++= Seq(
1212
"io.swagger.core.v3" % "swagger-annotations" % "2.0.0",
13-
"org.glassfish.jersey.core" % "jersey-client" % "2.25.1",
14-
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.25.1",
15-
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.25.1",
16-
"com.fasterxml.jackson.core" % "jackson-core" % "2.9.10" % "compile",
17-
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.9.10" % "compile",
18-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.10" % "compile",
19-
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
13+
"org.glassfish.jersey.core" % "jersey-client" % "2.26",
14+
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.26",
15+
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.26",
16+
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.1" % "compile",
17+
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.1" % "compile",
18+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.1" % "compile",
19+
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.10.1" % "compile",
2020
"org.apache.commons" % "commons-lang3" % "3.6",
2121
"commons-io" % "commons-io" % "2.5",
2222
"junit" % "junit" % "4.12" % "test",

samples/client/petstore/java/jersey2-java6/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
<jersey-version>2.6</jersey-version>
245245
<commons_io_version>2.5</commons_io_version>
246246
<commons_lang3_version>3.6</commons_lang3_version>
247-
<jackson-version>2.9.10</jackson-version>
247+
<jackson-version>2.10.1</jackson-version>
248248
<maven-plugin-version>1.0.0</maven-plugin-version>
249249
<junit-version>4.12</junit-version>
250250
</properties>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.12-SNAPSHOT
1+
3.0.14-SNAPSHOT

0 commit comments

Comments
 (0)