Skip to content

Commit b0c57ef

Browse files
author
springdoc
committed
upgrade to spring-boot 2.2.0.RELEASE
1 parent 6bad65b commit b0c57ef

File tree

3 files changed

+99
-102
lines changed

3 files changed

+99
-102
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<nexus-staging-maven-plugin>1.6.8</nexus-staging-maven-plugin>
6868
<jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
6969
<resource.delimiter>@</resource.delimiter>
70-
<spring-boot.version>2.0.9.RELEASE</spring-boot.version>
70+
<spring-boot.version>2.2.0.RELEASE</spring-boot.version>
7171
<swagger-api.version>2.0.10</swagger-api.version>
7272
<swagger-ui.version>3.24.0</swagger-ui.version>
7373
<webjars-locator.version>0.37</webjars-locator.version>

springdoc-openapi-webmvc-core/src/test/java/test/org/springdoc/api/app1/CustomOpenAPIConfig.java

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 98 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,99 @@
11
{
2-
"openapi":"3.0.1",
3-
"info":{
4-
"title":"OpenAPI definition",
5-
"version":"v0"
6-
},
7-
"servers":[
8-
{
9-
"url":"http://localhost",
10-
"description":"Generated server url"
11-
}
12-
],
13-
"paths":{
14-
"/persons":{
15-
"get":{
16-
"operationId":"persons",
17-
"responses":{
18-
"200":{
19-
"description":"default response",
20-
"content":{
21-
"*/*":{
22-
"schema":{
23-
"type":"string"
24-
}
25-
}
26-
}
27-
}
28-
}
29-
}
30-
},
31-
"/actuator/health":{
32-
"get":{
33-
"tags":[
34-
"Actuator"
35-
],
36-
"operationId":"handle",
37-
"responses":{
38-
"200":{
39-
"description":"default response",
40-
"content":{
41-
42-
}
43-
}
44-
}
45-
}
46-
},
47-
"/actuator/info":{
48-
"get":{
49-
"tags":[
50-
"Actuator"
51-
],
52-
"operationId":"handle_1",
53-
"responses":{
54-
"200":{
55-
"description":"default response",
56-
"content":{
57-
58-
}
59-
}
60-
}
61-
}
62-
},
63-
"/actuator":{
64-
"get":{
65-
"tags":[
66-
"Actuator"
67-
],
68-
"operationId":"links",
69-
"responses":{
70-
"200":{
71-
"description":"default response",
72-
"content":{
73-
74-
}
75-
}
76-
}
77-
}
78-
}
79-
},
80-
"components":{
81-
82-
}
83-
}
2+
"openapi": "3.0.1",
3+
"info": {
4+
"title": "OpenAPI definition",
5+
"version": "v0"
6+
},
7+
"servers": [
8+
{
9+
"url": "http://localhost",
10+
"description": "Generated server url"
11+
}
12+
],
13+
"paths": {
14+
"/persons": {
15+
"get": {
16+
"operationId": "persons",
17+
"responses": {
18+
"200": {
19+
"description": "default response",
20+
"content": {
21+
"*/*": {
22+
"schema": {
23+
"type": "string"
24+
}
25+
}
26+
}
27+
}
28+
}
29+
}
30+
},
31+
"/actuator/health": {
32+
"get": {
33+
"tags": [
34+
"Actuator"
35+
],
36+
"operationId": "handle",
37+
"responses": {
38+
"200": {
39+
"description": "default response",
40+
"content": {
41+
42+
}
43+
}
44+
}
45+
}
46+
},
47+
"/actuator/health/**": {
48+
"get": {
49+
"tags": [
50+
"Actuator"
51+
],
52+
"operationId": "handle_1",
53+
"responses": {
54+
"200": {
55+
"description": "default response",
56+
"content": {
57+
58+
}
59+
}
60+
}
61+
}
62+
},
63+
"/actuator/info": {
64+
"get": {
65+
"tags": [
66+
"Actuator"
67+
],
68+
"operationId": "handle_2",
69+
"responses": {
70+
"200": {
71+
"description": "default response",
72+
"content": {
73+
74+
}
75+
}
76+
}
77+
}
78+
},
79+
"/actuator": {
80+
"get": {
81+
"tags": [
82+
"Actuator"
83+
],
84+
"operationId": "links",
85+
"responses": {
86+
"200": {
87+
"description": "default response",
88+
"content": {
89+
90+
}
91+
}
92+
}
93+
}
94+
}
95+
},
96+
"components": {
97+
98+
}
99+
}

0 commit comments

Comments
 (0)