diff options
author | Vidyashree Rama <vidyashree.rama@huawei.com> | 2018-08-09 12:21:34 +0530 |
---|---|---|
committer | Dan Timoney <dt5972@att.com> | 2018-08-14 14:48:20 +0000 |
commit | 8e8ec2eb81e062010da230fae30626cb07c25bd1 (patch) | |
tree | 67cba985891a5ecd9ad492a574defd9c6a5146b0 /restconf-client/provider/pom.xml | |
parent | c29034ab5ea15d4c336f068ca8007ccebfad73e3 (diff) |
RestconfDiscoveryNode Plugin implementation
Initial code submit for supporting RestconfDiscoveryNode Plugin implementation
Issue-ID: CCSDK-374
Change-Id: Ieb0b622b135ea78ef58bd36dfe171f4117bc3328
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
Diffstat (limited to 'restconf-client/provider/pom.xml')
-rwxr-xr-x | restconf-client/provider/pom.xml | 49 |
1 files changed, 25 insertions, 24 deletions
diff --git a/restconf-client/provider/pom.xml b/restconf-client/provider/pom.xml index 776240e0..5a74d8fc 100755 --- a/restconf-client/provider/pom.xml +++ b/restconf-client/provider/pom.xml @@ -28,46 +28,47 @@ </dependency> <dependency> <groupId>org.springframework</groupId> - <artifactId>spring-test</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.onap.ccsdk.sli.core</groupId> - <artifactId>sli-common</artifactId> + <artifactId>spring-beans</artifactId> </dependency> <dependency> - <groupId>org.onap.ccsdk.sli.core</groupId> - <artifactId>sli-provider</artifactId> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> + <groupId>org.glassfish.jersey.media</groupId> + <artifactId>jersey-media-sse</artifactId> + <version>2.27</version> + <scope>provided</scope> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + <version>2.1</version> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context</artifactId> + <groupId>org.glassfish.jersey.inject</groupId> + <artifactId>jersey-hk2</artifactId> + <version>2.27</version> </dependency> <dependency> - <groupId>com.sun.jersey</groupId> - <artifactId>jersey-client</artifactId> + <groupId>org.glassfish.jersey.containers</groupId> + <artifactId>jersey-container-servlet</artifactId> + <version>2.27</version> </dependency> <dependency> - <groupId>com.sun.jersey.contribs.jersey-oauth</groupId> - <artifactId>oauth-signature</artifactId> - <version>${jersey.version}</version> + <groupId>org.glassfish.jersey.containers</groupId> + <artifactId>jersey-container-grizzly2-http</artifactId> + <version>2.27</version> + <scope>test</scope> </dependency> <dependency> - <groupId>com.sun.jersey.contribs.jersey-oauth</groupId> - <artifactId>oauth-client</artifactId> - <version>${jersey.version}</version> + <groupId>org.onap.ccsdk.sli.core</groupId> + <artifactId>sli-common</artifactId> </dependency> <dependency> - <groupId>org.codehaus.jettison</groupId> - <artifactId>jettison</artifactId> + <groupId>org.onap.ccsdk.sli.plugins</groupId> + <artifactId>properties-node-provider</artifactId> + <version>0.3.0-SNAPSHOT</version> </dependency> </dependencies> </project> |