Skip to content

Commit 6d7bbc8

Browse files
committed
update spring petstore samples
1 parent e0bae64 commit 6d7bbc8

File tree

11 files changed

+70
-0
lines changed

11 files changed

+70
-0
lines changed

samples/client/petstore/spring-stubs/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@
3535
<artifactId>springfox-swagger-ui</artifactId>
3636
<version>${springfox-version}</version>
3737
</dependency>
38+
<dependency>
39+
<groupId>javax.xml.bind</groupId>
40+
<artifactId>jaxb-api</artifactId>
41+
<version>2.2.11</version>
42+
</dependency>
3843
<dependency>
3944
<groupId>com.fasterxml.jackson.datatype</groupId>
4045
<artifactId>jackson-datatype-jsr310</artifactId>

samples/server/petstore/spring-mvc-j8-async/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,16 @@
9595
<artifactId>spring-web</artifactId>
9696
<version>${spring-version}</version>
9797
</dependency>
98+
<dependency>
99+
<groupId>javax.annotation</groupId>
100+
<artifactId>javax.annotation-api</artifactId>
101+
<version>1.3.2</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>javax.xml.bind</groupId>
105+
<artifactId>jaxb-api</artifactId>
106+
<version>2.2.11</version>
107+
</dependency>
98108
<!--SpringFox dependencies-->
99109
<dependency>
100110
<groupId>io.springfox</groupId>

samples/server/petstore/spring-mvc-j8-localdatetime/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,16 @@
9595
<artifactId>spring-web</artifactId>
9696
<version>${spring-version}</version>
9797
</dependency>
98+
<dependency>
99+
<groupId>javax.annotation</groupId>
100+
<artifactId>javax.annotation-api</artifactId>
101+
<version>1.3.2</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>javax.xml.bind</groupId>
105+
<artifactId>jaxb-api</artifactId>
106+
<version>2.2.11</version>
107+
</dependency>
98108
<!--SpringFox dependencies-->
99109
<dependency>
100110
<groupId>io.springfox</groupId>

samples/server/petstore/spring-mvc/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,16 @@
9595
<artifactId>spring-web</artifactId>
9696
<version>${spring-version}</version>
9797
</dependency>
98+
<dependency>
99+
<groupId>javax.annotation</groupId>
100+
<artifactId>javax.annotation-api</artifactId>
101+
<version>1.3.2</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>javax.xml.bind</groupId>
105+
<artifactId>jaxb-api</artifactId>
106+
<version>2.2.11</version>
107+
</dependency>
98108
<!--SpringFox dependencies-->
99109
<dependency>
100110
<groupId>io.springfox</groupId>

samples/server/petstore/springboot-beanvalidation/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.github.joschi.jackson</groupId>
5358
<artifactId>jackson-datatype-threetenbp</artifactId>

samples/server/petstore/springboot-delegate-j8/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.fasterxml.jackson.datatype</groupId>
5358
<artifactId>jackson-datatype-jsr310</artifactId>

samples/server/petstore/springboot-delegate/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.github.joschi.jackson</groupId>
5358
<artifactId>jackson-datatype-threetenbp</artifactId>

samples/server/petstore/springboot-implicitHeaders/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.fasterxml.jackson.datatype</groupId>
5358
<artifactId>jackson-datatype-jsr310</artifactId>

samples/server/petstore/springboot-useoptional/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.fasterxml.jackson.datatype</groupId>
5358
<artifactId>jackson-datatype-jsr310</artifactId>

samples/server/petstore/springboot-virtualan/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.fasterxml.jackson.datatype</groupId>
5358
<artifactId>jackson-datatype-jsr310</artifactId>

samples/server/petstore/springboot/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<artifactId>springfox-swagger-ui</artifactId>
4949
<version>${springfox-version}</version>
5050
</dependency>
51+
<dependency>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
<version>2.2.11</version>
55+
</dependency>
5156
<dependency>
5257
<groupId>com.fasterxml.jackson.datatype</groupId>
5358
<artifactId>jackson-datatype-jsr310</artifactId>

0 commit comments

Comments
 (0)