diff options
author | Vitaly Takmazov | 2023-01-10 16:52:50 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-10 16:52:50 +0300 |
commit | bfac316630eaf4dde3a8e80fce7426f5b130ae6d (patch) | |
tree | 8d52c8820d42b41d3843f322db4cf09a8a4c06f6 /pom.xml | |
parent | 8c7a78b4cd5d71661362ebd3209bc53e715bff53 (diff) |
Restore Swagger UI
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -357,7 +357,16 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>start</goal> + <goal>stop</goal> + </goals> + </execution> + </executions> <configuration> + <jvmArguments>-Dspring.application.admin.enabled=true</jvmArguments> <excludes> <exclude> <groupId>com.google.code.findbugs</groupId> @@ -366,6 +375,19 @@ </excludes> </configuration> </plugin> + <plugin> + <groupId>org.springdoc</groupId> + <artifactId>springdoc-openapi-maven-plugin</artifactId> + <version>1.4</version> + <executions> + <execution> + <id>integration-test</id> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> <profiles> |