Skip to content

Commit 53e017f

Browse files
author
bnasslahsen
committed
upgrade swagger-ui to 3.32.3.
1 parent d04fef8 commit 53e017f

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
6969
<nexus-staging-maven-plugin>1.6.8</nexus-staging-maven-plugin>
7070
<swagger-api.version>2.1.4</swagger-api.version>
71-
<swagger-ui.version>3.32.1</swagger-ui.version>
71+
<swagger-ui.version>3.32.3</swagger-ui.version>
7272
<spring-security-oauth2.version>2.3.8.RELEASE</spring-security-oauth2.version>
7373
<classgraph.version>4.8.69</classgraph.version>
7474
<webjars-locator-core.version>0.45</webjars-locator-core.version>

springdoc-openapi-webflux-core/src/test/java/test/org/springdoc/api/app79/BaseController.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22

33
import java.util.List;
44

5-
import io.swagger.v3.oas.annotations.Operation;
65
import reactor.core.publisher.Mono;
76

87
import org.springframework.http.ResponseEntity;
98
import org.springframework.web.bind.annotation.GetMapping;
109

1110
public abstract class BaseController<TClientModel extends BaseClientModel> {
12-
@Operation
1311
@GetMapping("/test1")
1412
Mono<ResponseEntity<TClientModel>> get1() {
1513
return null;
1614
}
1715

18-
@Operation
1916
@GetMapping("/test2")
2017
Mono<ResponseEntity<List<TClientModel>>> get2() {
2118
return null;

0 commit comments

Comments
 (0)