Skip to content

Commit 5f9d489

Browse files
committed
Adding Swagger UI, only REST endpoints supported (i.e.not WS)
1 parent 21f1915 commit 5f9d489

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

pom.xml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
<artifactId>spring-boot-starter-test</artifactId>
4141
<scope>test</scope>
4242
</dependency>
43+
<dependency>
44+
<groupId>org.springdoc</groupId>
45+
<artifactId>springdoc-openapi-ui</artifactId>
46+
<version>1.8.0</version>
47+
</dependency>
4348

4449
<dependency>
4550
<groupId>org.phoebus</groupId>
@@ -81,8 +86,16 @@
8186
<artifactId>jackson-datatype-jsr310</artifactId>
8287
<version>2.16.0</version>
8388
</dependency>
84-
85-
89+
<dependency>
90+
<groupId>com.fasterxml.jackson.core</groupId>
91+
<artifactId>jackson-annotations</artifactId>
92+
<version>2.15.4</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>regexp</groupId>
96+
<artifactId>regexp</artifactId>
97+
<version>1.2</version>
98+
</dependency>
8699
</dependencies>
87100

88101
<profiles>
@@ -165,19 +178,4 @@
165178
</build>
166179
</profile>
167180
</profiles>
168-
</project>
169-
170-
<!--<plugin>
171-
<groupId>org.mortbay.jetty</groupId>
172-
<artifactId>maven-jetty-plugin</artifactId>
173-
<version>6.1.10</version>
174-
<configuration>
175-
<scanIntervalSeconds>10</scanIntervalSeconds>
176-
<connectors>
177-
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
178-
<port>8080</port>
179-
<maxIdleTime>60000</maxIdleTime>
180-
</connector>
181-
</connectors>
182-
</configuration>
183-
</plugin>-->
181+
</project>

0 commit comments

Comments
 (0)