Skip to content

Commit df41973

Browse files
authored
Merge pull request #203 from jacomago/fix-springdoc
Fix the swagger ui not working
2 parents 53c80cf + b29eebe commit df41973

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

pom.xml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

5-
<artifactId>ChannelFinder</artifactId>
6-
<groupId>org.phoebus</groupId>
7-
<version>5.0.1-SNAPSHOT</version>
8-
<name>ChannelFinder Service</name>
6+
<artifactId>ChannelFinder</artifactId>
7+
<groupId>org.phoebus</groupId>
8+
<version>5.0.1-SNAPSHOT</version>
9+
<name>ChannelFinder Service</name>
910

1011
<description>A RESTful directory services for a list channels</description>
1112
<url>https://channelfinder.readthedocs.io/</url>
@@ -155,8 +156,8 @@
155156
</dependency>
156157
<dependency>
157158
<groupId>org.springdoc</groupId>
158-
<artifactId>springdoc-openapi-ui</artifactId>
159-
<version>1.7.0</version>
159+
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
160+
<version>2.8.5</version>
160161
</dependency>
161162
<dependency>
162163
<groupId>org.testcontainers</groupId>
@@ -186,11 +187,6 @@
186187
<artifactId>micrometer-registry-prometheus</artifactId>
187188
<scope>runtime</scope>
188189
</dependency>
189-
<dependency>
190-
<groupId>io.swagger.core.v3</groupId>
191-
<artifactId>swagger-core</artifactId>
192-
<version>2.2.20</version>
193-
</dependency>
194190
</dependencies>
195191
<build>
196192
<!-- read properties from the pom file and add them to the application.properties -->
@@ -303,7 +299,7 @@
303299
<id>merge</id>
304300
<phase>verify</phase>
305301
<goals>
306-
<goal>merge</goal>
302+
<goal>merge</goal>
307303
</goals>
308304
<configuration>
309305
<fileSets>
@@ -373,7 +369,8 @@
373369
<prefix>git</prefix>
374370
<verbose>false</verbose>
375371
<generateGitPropertiesFile>true</generateGitPropertiesFile>
376-
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
372+
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
373+
</generateGitPropertiesFilename>
377374
<format>json</format>
378375
<excludeProperties>
379376
<excludeProperty>^git.build.*$</excludeProperty>

0 commit comments

Comments
 (0)