diff options
author | micdzied <michal.1.dziedzic@nokia.com> | 2018-05-07 08:42:44 +0200 |
---|---|---|
committer | micdzied <michal.1.dziedzic@nokia.com> | 2018-05-07 12:43:40 +0200 |
commit | 7e7aa0c165665f74b628ba5c95fb3cdae72f4449 (patch) | |
tree | 737fe8068a44e7e297c305af1ff699b1f53a7c5e /prh-app-server/pom.xml | |
parent | ee36c363b3c90055d9b10059775a9d54a76f767a (diff) |
creating swagger documentation
Change-Id: I8ca3faf2e6afb7add2785add2ac9096ded98f591
Issue-ID: DCAEGEN2-468
Signed-off-by: micdzied <michal.1.dziedzic@nokia.com>
Diffstat (limited to 'prh-app-server/pom.xml')
-rw-r--r-- | prh-app-server/pom.xml | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml index cb85db11..668b729a 100644 --- a/prh-app-server/pom.xml +++ b/prh-app-server/pom.xml @@ -108,22 +108,10 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> - <exclusions> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-json</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> - <exclusions> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-json</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> <groupId>com.spotify</groupId> @@ -237,6 +225,15 @@ <artifactId>prh-aai-client</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> + <!--REQUIRED TO GENERATE DOCUMENTATION --> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger2</artifactId> + </dependency> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger-ui</artifactId> + </dependency> </dependencies> <dependencyManagement> |