diff options
author | liamfallon <liam.fallon@est.tech> | 2022-12-08 18:44:09 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-12-08 18:44:13 +0000 |
commit | 5ac400df6381d2f275e0359cb06c7904eddf1faf (patch) | |
tree | 2a3ac7b8d6382d6d572f6034e46e57f699a6143c /main/pom.xml | |
parent | 64e5fee5475ff3172caa98b00d719ce5f1308b5d (diff) |
Replace SpringFox with SpringDoc in policy-pap
This commit:
- Remove SpringFox
- Adds SpringDoc
- Enables the .../v3/api-docs endpoint
Note that the Swagger annotations from the OpenAPI specification
generated code need to be enabled so that the API specification is
available over the ..../v3/api-docs endpoint. THis will be done in
subsequent commits.
Issue-ID: POLICY-4404
Change-Id: I42c1575a3ce76d9b3e753ad51f85df027d12b980
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'main/pom.xml')
-rw-r--r-- | main/pom.xml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/main/pom.xml b/main/pom.xml index d018e691..bd42087c 100644 --- a/main/pom.xml +++ b/main/pom.xml @@ -62,16 +62,6 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-boot-starter</artifactId> - <version>${version.springfox}</version> - </dependency> - <dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-swagger-ui</artifactId> - <scope>runtime</scope> - </dependency> - <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <scope>provided</scope> @@ -127,6 +117,10 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> + <dependency> + <groupId>org.springdoc</groupId> + <artifactId>springdoc-openapi-ui</artifactId> + </dependency> </dependencies> <build> |