blob: 2b5be877abd5fc7b8110be1da48d685684d6cbb3 [file] [log] [blame]
gauravd7d5ea02018-07-18 19:39:10 +05301<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
8 <version>1.1.0-SNAPSHOT</version>
9 </parent>
10
11 <groupId>org.onap.ccsdk.sli.plugins</groupId>
12 <artifactId>restconf-client-provider</artifactId>
13 <version>0.3.0-SNAPSHOT</version>
14 <packaging>bundle</packaging>
15
16 <name>ccsdk-sli-plugins :: restconf-client :: ${project.artifactId}</name>
17 <url>http://maven.apache.org</url>
18
19 <properties>
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21 </properties>
22
23 <dependencies>
24 <dependency>
25 <groupId>junit</groupId>
26 <artifactId>junit</artifactId>
27 <scope>test</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.springframework</groupId>
gauravd7d5ea02018-07-18 19:39:10 +053031 <artifactId>spring-beans</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.springframework</groupId>
35 <artifactId>spring-context</artifactId>
36 </dependency>
37 <dependency>
Vidyashree Rama8e8ec2e2018-08-09 12:21:34 +053038 <groupId>org.glassfish.jersey.media</groupId>
39 <artifactId>jersey-media-sse</artifactId>
40 <version>2.27</version>
41 <scope>provided</scope>
gauravd7d5ea02018-07-18 19:39:10 +053042 </dependency>
43 <dependency>
Vidyashree Rama8e8ec2e2018-08-09 12:21:34 +053044 <groupId>javax.ws.rs</groupId>
45 <artifactId>javax.ws.rs-api</artifactId>
46 <version>2.1</version>
gauravd7d5ea02018-07-18 19:39:10 +053047 </dependency>
48 <dependency>
Vidyashree Rama8e8ec2e2018-08-09 12:21:34 +053049 <groupId>org.glassfish.jersey.inject</groupId>
50 <artifactId>jersey-hk2</artifactId>
51 <version>2.27</version>
gauravd7d5ea02018-07-18 19:39:10 +053052 </dependency>
53 <dependency>
Vidyashree Rama8e8ec2e2018-08-09 12:21:34 +053054 <groupId>org.glassfish.jersey.containers</groupId>
55 <artifactId>jersey-container-servlet</artifactId>
56 <version>2.27</version>
57 </dependency>
58 <dependency>
59 <groupId>org.glassfish.jersey.containers</groupId>
60 <artifactId>jersey-container-grizzly2-http</artifactId>
61 <version>2.27</version>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.onap.ccsdk.sli.core</groupId>
66 <artifactId>sli-common</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.onap.ccsdk.sli.plugins</groupId>
70 <artifactId>properties-node-provider</artifactId>
71 <version>0.3.0-SNAPSHOT</version>
gauravd7d5ea02018-07-18 19:39:10 +053072 </dependency>
Vidyashree Rama21190932018-08-17 12:21:05 +053073 <dependency>
74 <groupId>org.opendaylight.yangtools</groupId>
75 <artifactId>yang-data-impl</artifactId>
76 <version>2.0.3</version>
77 </dependency>
janani b06f4a652018-08-17 15:32:26 +053078 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-databind</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>dom4j</groupId>
84 <artifactId>dom4j</artifactId>
85 <version>1.6.1</version>
86 </dependency>
87 <dependency>
88 <groupId>com.google.code.gson</groupId>
89 <artifactId>gson</artifactId>
90 <version>2.7</version>
91 </dependency>
92 <dependency>
93 <groupId>org.onap.ccsdk.sli.plugins</groupId>
94 <artifactId>restapi-call-node-provider</artifactId>
95 <version>0.3.0-SNAPSHOT</version>
96 </dependency>
Vidyashree Rama224d3942018-08-17 17:15:20 +053097 <dependency>
98 <groupId>org.hamcrest</groupId>
99 <artifactId>hamcrest-library</artifactId>
100 <version>1.3</version>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.opendaylight.yangtools</groupId>
105 <artifactId>yang-test-util</artifactId>
106 <version>2.0.3</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.opendaylight.netconf</groupId>
111 <artifactId>restconf-nb-rfc8040</artifactId>
112 <version>1.7.4-SNAPSHOT</version>
113 <scope>test</scope>
114 </dependency>
gauravd7d5ea02018-07-18 19:39:10 +0530115 </dependencies>
116</project>