diff options
author | 2019-01-07 21:32:15 +0000 | |
---|---|---|
committer | 2019-01-09 18:53:12 +0000 | |
commit | 20c6155c781f2bec7920d37da40c23f3e2a26b89 (patch) | |
tree | e24b1f5b83529d95033b71a8050b04e1258648c2 /pomba/network-discovery/pom.xml | |
parent | e9d2fb2637ae8fc5fb0fe3474c75bf0c8409b66a (diff) |
Network Discovery Microservice Sync responses
Issue-ID: SDNC-543
Change-Id: I274c23a258dcbdd4928169f119e03925b1c10ee7
Signed-off-by: Norm Traxler <normant@amdocs.com>
Diffstat (limited to 'pomba/network-discovery/pom.xml')
-rw-r--r-- | pomba/network-discovery/pom.xml | 59 |
1 files changed, 20 insertions, 39 deletions
diff --git a/pomba/network-discovery/pom.xml b/pomba/network-discovery/pom.xml index dea7353..a428a59 100644 --- a/pomba/network-discovery/pom.xml +++ b/pomba/network-discovery/pom.xml @@ -66,30 +66,23 @@ limitations under the License. <artifactId>commons-io</artifactId> <version>2.5</version> </dependency> - - <!-- Springframework dependencies --> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - </dependency> - <dependency> + + <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter</artifactId> - <exclusions> - <exclusion> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-jersey</artifactId> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-jersey</artifactId> + <exclusions> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + </exclusion> + </exclusions> </dependency> + <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> @@ -111,32 +104,20 @@ limitations under the License. </exclusion> </exclusions> </dependency> + <!-- swagger dependencies --> - <dependency> - <groupId>io.swagger</groupId> - <artifactId>swagger-annotations</artifactId> - <version>1.5.9</version> - </dependency> + <dependency> + <groupId>io.swagger</groupId> + <artifactId>swagger-jersey2-jaxrs</artifactId> + <version>1.5.21</version> + </dependency> + <!-- application dependencies --> <dependency> <groupId>org.onap.sdnc.apps.pomba</groupId> <artifactId>network-discovery-api</artifactId> <version>${project.version}</version> </dependency> - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - - </dependency> - <dependency> - <groupId>org.glassfish.jersey.core</groupId> - <artifactId>jersey-client</artifactId> - </dependency> - <dependency> - <groupId>org.onap.aai</groupId> - <artifactId>rest-client</artifactId> - <version>1.2.1</version> - </dependency> <!-- Test dependencies --> <dependency> |