0818e8149df0f7635217d09d188c3e2a79dcfaf6
[netconf.git] / restconf / restconf-nb-rfc8040 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13   <parent>
14     <groupId>org.opendaylight.netconf</groupId>
15     <artifactId>netconf-parent</artifactId>
16     <version>3.0.0-SNAPSHOT</version>
17     <relativePath>../../parent</relativePath>
18   </parent>
19
20   <artifactId>restconf-nb-rfc8040</artifactId>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>javax.annotation</groupId>
26       <artifactId>javax.annotation-api</artifactId>
27       <optional>true</optional>
28     </dependency>
29     <dependency>
30       <groupId>com.guicedee.services</groupId>
31       <artifactId>javax.inject</artifactId>
32       <optional>true</optional>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.netconf</groupId>
36       <artifactId>restconf-common-models</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.netconf</groupId>
40       <artifactId>restconf-common</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
44       <artifactId>rfc6991-ietf-yang-types</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
48       <artifactId>rfc8525</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.netconf</groupId>
52       <artifactId>ietf-restconf</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.netconf</groupId>
56       <artifactId>ietf-restconf-monitoring</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.netconf</groupId>
60       <artifactId>ietf-yang-patch</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.netconf</groupId>
64       <artifactId>netconf-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.netconf</groupId>
68       <artifactId>netconf-dom-api</artifactId>
69     </dependency>
70
71     <dependency>
72       <groupId>org.opendaylight.odlparent</groupId>
73       <artifactId>logging-markers</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>yang-data-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>yang-data-util</artifactId>
83       <!-- FIXME: remove this override -->
84       <version>7.0.15</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.yangtools</groupId>
88       <artifactId>yang-data-impl</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>yang-model-util</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>yang-data-codec-xml</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.yangtools</groupId>
100       <artifactId>yang-data-codec-gson</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.yangtools</groupId>
104       <artifactId>yang-test-util</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.yangtools</groupId>
108       <artifactId>yang-model-export</artifactId>
109     </dependency>
110
111     <dependency>
112       <groupId>org.opendaylight.mdsal</groupId>
113       <artifactId>mdsal-dom-spi</artifactId>
114     </dependency>
115
116     <dependency>
117       <groupId>org.opendaylight.controller</groupId>
118       <artifactId>threadpool-config-api</artifactId>
119     </dependency>
120
121     <dependency>
122       <groupId>net.java.dev.stax-utils</groupId>
123       <artifactId>stax-utils</artifactId>
124     </dependency>
125
126     <dependency>
127       <groupId>org.json</groupId>
128       <artifactId>json</artifactId>
129       <version>20131018</version>
130       <scope>test</scope>
131     </dependency>
132
133     <dependency>
134       <groupId>org.opendaylight.aaa.web</groupId>
135       <artifactId>web-api</artifactId>
136     </dependency>
137
138     <dependency>
139       <groupId>org.opendaylight.aaa.web</groupId>
140       <artifactId>servlet-api</artifactId>
141     </dependency>
142
143     <dependency>
144       <groupId>org.opendaylight.aaa</groupId>
145       <artifactId>aaa-filterchain</artifactId>
146     </dependency>
147
148     <dependency>
149       <groupId>org.eclipse.jetty.websocket</groupId>
150       <artifactId>websocket-servlet</artifactId>
151     </dependency>
152
153     <!-- Testing Dependencies -->
154     <dependency>
155       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
156       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>org.glassfish.jersey.inject</groupId>
161       <artifactId>jersey-hk2</artifactId>
162       <scope>test</scope>
163     </dependency>
164     <dependency>
165       <groupId>org.glassfish.jersey.media</groupId>
166       <artifactId>jersey-media-sse</artifactId>
167       <scope>test</scope>
168     </dependency>
169     <dependency>
170       <groupId>org.opendaylight.mdsal</groupId>
171       <artifactId>mdsal-binding-test-utils</artifactId>
172       <scope>test</scope>
173     </dependency>
174     <dependency>
175       <groupId>org.opendaylight.mdsal</groupId>
176       <artifactId>mdsal-binding-dom-adapter</artifactId>
177       <type>test-jar</type>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.skyscreamer</groupId>
182       <artifactId>jsonassert</artifactId>
183       <scope>test</scope>
184     </dependency>
185     <dependency>
186       <groupId>org.opendaylight.aaa.web</groupId>
187       <artifactId>testutils</artifactId>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.opendaylight.controller</groupId>
192       <artifactId>threadpool-config-impl</artifactId>
193       <scope>test</scope>
194     </dependency>
195     <dependency>
196       <groupId>org.xmlunit</groupId>
197       <artifactId>xmlunit-assertj</artifactId>
198       <scope>test</scope>
199     </dependency>
200     <dependency>
201       <groupId>net.javacrumbs.json-unit</groupId>
202       <artifactId>json-unit-assertj</artifactId>
203       <version>2.28.0</version>
204       <scope>test</scope>
205     </dependency>
206   </dependencies>
207
208   <build>
209     <plugins>
210       <plugin>
211         <groupId>org.apache.felix</groupId>
212         <artifactId>maven-bundle-plugin</artifactId>
213         <extensions>true</extensions>
214         <configuration>
215           <instructions>
216             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
217           </instructions>
218         </configuration>
219       </plugin>
220       <plugin>
221         <groupId>org.codehaus.mojo</groupId>
222         <artifactId>build-helper-maven-plugin</artifactId>
223         <executions>
224           <execution>
225             <id>attach-artifacts</id>
226             <goals>
227               <goal>attach-artifact</goal>
228             </goals>
229             <phase>package</phase>
230             <configuration>
231               <artifacts>
232                 <artifact>
233                   <file>${project.build.directory}/classes/restconf8040.cfg</file>
234                   <type>cfg</type>
235                   <classifier>config</classifier>
236                 </artifact>
237               </artifacts>
238             </configuration>
239           </execution>
240         </executions>
241       </plugin>
242     </plugins>
243   </build>
244 </project>