Release ccsdk/sli/plugins
[ccsdk/sli/plugins.git] / restconf-client / provider / pom.xml
1 <?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.3.5</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>restconf-client-provider</artifactId>
13     <version>0.5.4</version>
14     <packaging>bundle</packaging>
15
16     <name>ccsdk-sli-plugins :: restconf-client :: ${project.artifactId}</name>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.onap.ccsdk.sli.core</groupId>
22                 <artifactId>sli-core-artifacts</artifactId>
23                 <version>${ccsdk.sli.core.version}</version>
24                 <type>pom</type>
25                 <scope>import</scope>
26             </dependency>
27         </dependencies>
28     </dependencyManagement>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.glassfish.jersey.media</groupId>
33             <artifactId>jersey-media-sse</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>javax.ws.rs</groupId>
37             <artifactId>javax.ws.rs-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.onap.ccsdk.sli.core</groupId>
41             <artifactId>sli-common</artifactId>
42             <scope>provided</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.onap.ccsdk.sli.core</groupId>
46             <artifactId>sli-provider</artifactId>
47             <scope>provided</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.onap.ccsdk.sli.plugins</groupId>
51             <artifactId>properties-node-provider</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-data-impl</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.fasterxml.jackson.core</groupId>
60             <artifactId>jackson-databind</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>dom4j</groupId>
64             <artifactId>dom4j</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.code.gson</groupId>
68             <artifactId>gson</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.onap.ccsdk.sli.plugins</groupId>
72             <artifactId>restapi-call-node-provider</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.netconf</groupId>
77             <artifactId>restconf-nb-rfc8040</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>yang-parser-impl</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.osgi</groupId>
85             <artifactId>org.osgi.core</artifactId>
86             <scope>provided</scope>
87         </dependency>
88
89         <!-- For test -->
90         <dependency>
91             <groupId>junit</groupId>
92             <artifactId>junit</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.mockito</groupId>
97             <artifactId>mockito-core</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.glassfish.jersey.containers</groupId>
102             <artifactId>jersey-container-servlet</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.glassfish.jersey.containers</groupId>
107             <artifactId>jersey-container-grizzly2-http</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.hamcrest</groupId>
112             <artifactId>hamcrest-library</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.yangtools</groupId>
117             <artifactId>yang-test-util</artifactId>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.glassfish.jersey.core</groupId>
122             <artifactId>jersey-client</artifactId>
123             <scope>test</scope>
124         </dependency>
125     </dependencies>
126 </project>