aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-01-10 16:52:50 +0300
committerGravatar Vitaly Takmazov2023-01-10 16:52:50 +0300
commitbfac316630eaf4dde3a8e80fce7426f5b130ae6d (patch)
tree8d52c8820d42b41d3843f322db4cf09a8a4c06f6 /pom.xml
parent8c7a78b4cd5d71661362ebd3209bc53e715bff53 (diff)
Restore Swagger UI
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index b46c0b77..2c828b45 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>