Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit fe3cb52

Browse files
committed
fix online server exception
1 parent e3317a3 commit fe3cb52

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

modules/openapi-generator-online/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<spring-boot-version>2.0.7.RELEASE</spring-boot-version>
1919
<springfox-version>2.8.0</springfox-version>
2020
<junit-version>4.13</junit-version>
21+
<jackson-version>2.10.2</jackson-version>
2122
</properties>
2223
<dependencyManagement>
2324
<dependencies>
@@ -117,6 +118,12 @@
117118
<dependency>
118119
<groupId>com.fasterxml.jackson.datatype</groupId>
119120
<artifactId>jackson-datatype-jsr310</artifactId>
121+
<version>${jackson-version}</version>
122+
</dependency>
123+
<dependency>
124+
<groupId>com.fasterxml.jackson.core</groupId>
125+
<artifactId>jackson-core</artifactId>
126+
<version>${jackson-version}</version>
120127
</dependency>
121128
<!-- Bean Validation API support -->
122129
<dependency>

modules/openapi-generator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
<diffutils-version>1.3.0</diffutils-version>
233233
<guava-version>26.0-jre</guava-version>
234234
<generex-version>1.0.2</generex-version>
235-
<jackson-version>2.10.1</jackson-version>
235+
<jackson-version>2.10.2</jackson-version>
236236
<jackson-threetenbp-version>2.10.0</jackson-threetenbp-version>
237237
<kotlin-version>1.3.60</kotlin-version>
238238
</properties>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@
15961596
<commons-io-version>2.4</commons-io-version>
15971597
<commons-cli-version>1.2</commons-cli-version>
15981598
<junit-version>4.13</junit-version>
1599-
<jackson-version>2.8.9</jackson-version>
1599+
<jackson-version>2.10.2</jackson-version>
16001600
<maven-plugin-version>1.0.0</maven-plugin-version>
16011601
<commons-lang-version>3.4</commons-lang-version>
16021602
<slf4j-version>1.7.12</slf4j-version>

0 commit comments

Comments
 (0)