aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2021-07-06 09:53:17 +0100
committerliamfallon <liam.fallon@est.tech>2021-07-07 15:48:29 +0100
commit137e045a4f686197b505f74fb3110894fd42b237 (patch)
tree81cc5f1cc0bc7621dc820c2281dc34e9b4a1f898 /pom.xml
parentf9a873f5b1abc48f67093105411ce93ac2325985 (diff)
Add swagger models for swagger endpoint generation
The swagger models dependency is required to generate the swagger for the Swagger endpoint in Springboot applications. Springboot needs Jackson annotations as well. Issue https://jira.onap.org/browse/POLICY-3465 opened for the general Swagger upgrade work. Issue-ID: POLICY-3424 Change-Id: Ie86db5652be26df085234f0699f0363081d06af0 Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index eb8b58a65..da214ff22 100644
--- a/pom.xml
+++ b/pom.xml
@@ -131,6 +131,15 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>io.swagger</groupId>
+ <artifactId>swagger-models</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+ <dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>${version.springfox}</version>