Release version 1.1.0 of 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>2.1.0</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>restconf-client-provider</artifactId>
13     <version>1.1.1-SNAPSHOT</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     <dependencies>
30         <dependency>
31             <groupId>org.glassfish.jersey.media</groupId>
32             <artifactId>jersey-media-sse</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>javax.ws.rs</groupId>
36             <artifactId>javax.ws.rs-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.onap.ccsdk.sli.core</groupId>
40             <artifactId>sli-common</artifactId>
41             <scope>provided</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.onap.ccsdk.sli.core</groupId>
45             <artifactId>sli-provider</artifactId>
46             <scope>provided</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.onap.ccsdk.sli.plugins</groupId>
50             <artifactId>properties-node-provider</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-data-impl</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>com.fasterxml.jackson.core</groupId>
59             <artifactId>jackson-databind</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.dom4j</groupId>
63             <artifactId>dom4j</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.code.gson</groupId>
67             <artifactId>gson</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.onap.ccsdk.sli.plugins</groupId>
71             <artifactId>restapi-call-node-provider</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.netconf</groupId>
76             <artifactId>restconf-nb-rfc8040</artifactId>
77             <scope>provided</scope>
78             <exclusions>
79                 <exclusion>
80                     <groupId>javax.xml</groupId>
81                     <artifactId>jsr173</artifactId>
82                 </exclusion>
83             </exclusions>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>yang-parser-impl</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.osgi</groupId>
91             <artifactId>org.osgi.core</artifactId>
92             <scope>provided</scope>
93         </dependency>
94
95         <!-- For test -->
96         <dependency>
97             <groupId>junit</groupId>
98             <artifactId>junit</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.mockito</groupId>
103             <artifactId>mockito-core</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.glassfish.jersey.containers</groupId>
108             <artifactId>jersey-container-servlet</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.glassfish.jersey.containers</groupId>
113             <artifactId>jersey-container-grizzly2-http</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.hamcrest</groupId>
118             <artifactId>hamcrest-library</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>yang-test-util</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.glassfish.jersey.core</groupId>
128             <artifactId>jersey-client</artifactId>
129             <scope>test</scope>
130         </dependency>
131     </dependencies>
132 </project>