280d0071823adbdfe377e9a535bc5b2c83be21ab
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3     ============LICENSE_START=======================================================
4     ONAP : CCSDK / SDNR / WT / devicemanager
5     ================================================================================
6     Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All
7     rights reserved.
8     ================================================================================
9     Licensed under the Apache License, Version 2.0 (the "License"); you may not
10     use this file except in compliance with the License. You may obtain a copy
11     of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
12     by applicable law or agreed to in writing, software distributed under the
13     License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
14     OF ANY KIND, either express or implied. See the License for the specific
15     language governing permissions and limitations under the License.
16     ============LICENSE_END=========================================================
17 -->
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21   <modelVersion>4.0.0</modelVersion>
22
23   <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
24   <artifactId>sdnr-wt-devicemanager-provider</artifactId>
25   <version>0.4.1-SNAPSHOT</version>
26   <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
27   <packaging>bundle</packaging>
28
29   <parent>
30     <groupId>org.onap.ccsdk.parent</groupId>
31     <artifactId>binding-parent</artifactId>
32     <version>1.2.1-SNAPSHOT</version>
33     <relativePath></relativePath>
34   </parent>
35
36   <properties>
37     <checkstyle.skip>true</checkstyle.skip> <!-- POM configuration -->
38     <maven.javadoc.skip>true</maven.javadoc.skip>
39     <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
40     <buildtime>${maven.build.timestamp} UTC</buildtime>
41   </properties>
42
43   <licenses>
44     <license>
45       <name>Apache License, Version 2.0</name>
46       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
47     </license>
48   </licenses>
49   <dependencies>
50     <dependency>
51       <groupId>org.mockito</groupId>
52       <artifactId>mockito-core</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>sdnr-wt-devicemanager-model</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
62       <artifactId>sdnr-wt-websocketmanager2-model</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>sdnr-wt-devicemodel-model</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>org.osgi</groupId>
72       <artifactId>org.osgi.core</artifactId>
73       <scope>provided</scope>
74     </dependency>
75 <!--     <dependency> -->
76 <!--       <groupId>org.opendaylight.mdsal</groupId> -->
77 <!--       <artifactId>mdsal-binding-dom-adapter</artifactId> -->
78 <!--     </dependency> -->
79 <!--     <dependency> -->
80 <!--       <groupId>org.opendaylight.mdsal</groupId> -->
81 <!--       <artifactId>mdsal-dom-spi</artifactId> -->
82 <!--     </dependency> -->
83 <!--     <dependency> -->
84 <!--       <groupId>org.opendaylight.controller</groupId> -->
85 <!--       <artifactId>sal-binding-api</artifactId> -->
86 <!--     </dependency> -->
87 <!--     <dependency> -->
88 <!--       <groupId>org.opendaylight.netconf</groupId> -->
89 <!--       <artifactId>sal-netconf-connector</artifactId> -->
90 <!--     </dependency> -->
91 <!--     <dependency> -->
92 <!--       <groupId>org.opendaylight.mdsal</groupId> -->
93 <!--       <artifactId>mdsal-dom-broker</artifactId> -->
94 <!--     </dependency> -->
95     <dependency>
96       <groupId>org.opendaylight.netconf</groupId>
97       <artifactId>sal-netconf-connector</artifactId>
98       <scope>provided</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.json</groupId>
102       <artifactId>json</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>com.typesafe.akka</groupId>
106       <artifactId>akka-actor_2.12</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>com.typesafe.akka</groupId>
110       <artifactId>akka-cluster_2.12</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.osgi</groupId>
114       <artifactId>org.osgi.compendium</artifactId>
115     </dependency>
116
117         <!-- Elasticsearch dependencies below should be part of this bundle -->
118         <!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
119         <!-- Includes all implicit dependencies -->
120
121     <dependency>
122       <groupId>org.elasticsearch</groupId>
123       <artifactId>elasticsearch</artifactId>
124       <version>2.2.0</version>
125       <scope>provided</scope>
126     </dependency>
127     <dependency>
128       <groupId>com.spatial4j</groupId>
129       <artifactId>spatial4j</artifactId>
130       <version>0.5</version>
131       <scope>provided</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.elasticsearch</groupId>
135       <artifactId>securesm</artifactId>
136       <version>1.0</version>
137       <scope>provided</scope>
138     </dependency>
139     <dependency>
140       <groupId>com.carrotsearch</groupId>
141       <artifactId>hppc</artifactId>
142       <version>0.7.1</version>
143       <scope>provided</scope>
144     </dependency>
145     <dependency>
146       <groupId>joda-time</groupId>
147       <artifactId>joda-time</artifactId>
148       <version>2.8.2</version>
149       <scope>provided</scope>
150     </dependency>
151     <dependency>
152       <groupId>org.joda</groupId>
153       <artifactId>joda-convert</artifactId>
154       <version>1.2</version>
155       <scope>provided</scope>
156     </dependency>
157     <dependency>
158       <groupId>com.fasterxml.jackson.core</groupId>
159       <artifactId>jackson-core</artifactId>
160       <version>2.6.3</version>
161       <scope>provided</scope>
162     </dependency>
163     <dependency>
164       <groupId>com.fasterxml.jackson.core</groupId>
165       <artifactId>jackson-annotations</artifactId>
166       <version>2.6.3</version>
167       <scope>provided</scope>
168     </dependency>
169     <dependency>
170       <groupId>com.fasterxml.jackson.core</groupId>
171       <artifactId>jackson-databind</artifactId>
172       <version>2.6.3</version>
173       <scope>provided</scope>
174     </dependency>
175     <dependency>
176       <groupId>com.fasterxml.jackson.dataformat</groupId>
177       <artifactId>jackson-dataformat-smile</artifactId>
178       <version>2.6.3</version>
179       <scope>provided</scope>
180     </dependency>
181     <dependency>
182       <groupId>com.fasterxml.jackson.dataformat</groupId>
183       <artifactId>jackson-dataformat-yaml</artifactId>
184       <version>2.6.3</version>
185       <scope>provided</scope>
186     </dependency>
187     <dependency>
188       <groupId>com.fasterxml.jackson.dataformat</groupId>
189       <artifactId>jackson-dataformat-cbor</artifactId>
190       <version>2.6.3</version>
191       <scope>provided</scope>
192     </dependency>
193     <dependency>
194       <groupId>org.yaml</groupId>
195       <artifactId>snakeyaml</artifactId>
196       <version>1.15</version>
197       <scope>provided</scope>
198     </dependency>
199 <!--     <dependency> -->
200 <!--       <groupId>io.netty</groupId> -->
201 <!--       <artifactId>netty</artifactId> -->
202 <!--       <version>3.10.5.Final</version> -->
203 <!--       <scope>provided</scope> -->
204 <!--     </dependency> -->
205     <dependency>
206       <groupId>com.ning</groupId>
207       <artifactId>compress-lzf</artifactId>
208       <version>1.0.2</version>
209       <scope>provided</scope>
210     </dependency>
211     <dependency>
212       <groupId>com.tdunning</groupId>
213       <artifactId>t-digest</artifactId>
214       <version>3.0</version>
215       <scope>provided</scope>
216     </dependency>
217     <dependency>
218       <groupId>org.hdrhistogram</groupId>
219       <artifactId>HdrHistogram</artifactId>
220       <version>2.1.6</version>
221       <scope>provided</scope>
222     </dependency>
223     <dependency>
224       <groupId>com.twitter</groupId>
225       <artifactId>jsr166e</artifactId>
226       <version>1.1.0</version>
227       <scope>provided</scope>
228     </dependency>
229     <dependency>
230       <groupId>org.apache.lucene</groupId>
231       <artifactId>lucene-core</artifactId>
232       <version>5.4.1</version>
233       <scope>provided</scope>
234     </dependency>
235     <dependency>
236       <groupId>org.apache.lucene</groupId>
237       <artifactId>lucene-backward-codecs</artifactId>
238       <version>5.4.1</version>
239       <scope>provided</scope>
240     </dependency>
241     <dependency>
242       <groupId>org.apache.lucene</groupId>
243       <artifactId>lucene-analyzers-common</artifactId>
244       <version>5.4.1</version>
245       <scope>provided</scope>
246     </dependency>
247     <dependency>
248       <groupId>org.apache.lucene</groupId>
249       <artifactId>lucene-queries</artifactId>
250       <version>5.4.1</version>
251       <scope>provided</scope>
252     </dependency>
253     <dependency>
254       <groupId>org.apache.lucene</groupId>
255       <artifactId>lucene-memory</artifactId>
256       <version>5.4.1</version>
257       <scope>provided</scope>
258     </dependency>
259     <dependency>
260       <groupId>org.apache.lucene</groupId>
261       <artifactId>lucene-highlighter</artifactId>
262       <version>5.4.1</version>
263       <scope>provided</scope>
264     </dependency>
265     <dependency>
266       <groupId>org.apache.lucene</groupId>
267       <artifactId>lucene-queryparser</artifactId>
268       <version>5.4.1</version>
269       <scope>provided</scope>
270     </dependency>
271     <dependency>
272       <groupId>org.apache.lucene</groupId>
273       <artifactId>lucene-sandbox</artifactId>
274       <version>5.4.1</version>
275       <scope>provided</scope>
276     </dependency>
277     <dependency>
278       <groupId>org.apache.lucene</groupId>
279       <artifactId>lucene-suggest</artifactId>
280       <version>5.4.1</version>
281       <scope>provided</scope>
282     </dependency>
283     <dependency>
284       <groupId>org.apache.lucene</groupId>
285       <artifactId>lucene-misc</artifactId>
286       <version>5.4.1</version>
287       <scope>provided</scope>
288     </dependency>
289     <dependency>
290       <groupId>org.apache.lucene</groupId>
291       <artifactId>lucene-join</artifactId>
292       <version>5.4.1</version>
293       <scope>provided</scope>
294     </dependency>
295     <dependency>
296       <groupId>org.apache.lucene</groupId>
297       <artifactId>lucene-grouping</artifactId>
298       <version>5.4.1</version>
299       <scope>provided</scope>
300     </dependency>
301     <dependency>
302       <groupId>org.apache.lucene</groupId>
303       <artifactId>lucene-spatial</artifactId>
304       <version>5.4.1</version>
305       <scope>provided</scope>
306     </dependency>
307     <dependency>
308       <groupId>org.apache.lucene</groupId>
309       <artifactId>lucene-spatial3d</artifactId>
310       <version>5.4.1</version>
311       <scope>provided</scope>
312     </dependency>
313     <dependency>
314       <groupId>jakarta-regexp</groupId>
315       <artifactId>jakarta-regexp</artifactId>
316       <version>1.4</version>
317       <scope>provided</scope>
318     </dependency>
319     <dependency>
320       <groupId>commons-collections</groupId>
321       <artifactId>commons-collections</artifactId>
322       <version>3.2.2</version>
323       <scope>provided</scope>
324     </dependency>
325     <dependency>
326       <groupId>commons-logging</groupId>
327       <artifactId>commons-logging</artifactId>
328       <version>1.2</version>
329       <scope>provided</scope>
330     </dependency>
331     <dependency>
332       <groupId>commons-cli</groupId>
333       <artifactId>commons-cli</artifactId>
334       <version>1.3.1</version>
335       <scope>provided</scope>
336     </dependency>
337     <dependency>
338       <groupId>org.apache.commons</groupId>
339       <artifactId>commons-lang3</artifactId>
340       <version>3.4</version>
341       <scope>provided</scope>
342     </dependency>
343     <dependency>
344       <groupId>org.elasticsearch.plugin</groupId>
345       <artifactId>delete-by-query</artifactId>
346       <version>2.2.0</version>
347       <scope>provided</scope>
348     </dependency>
349   </dependencies>
350   <build>
351     <resources>
352       <resource>
353         <directory>src/main/resources</directory>
354         <filtering>true</filtering>
355       </resource>
356 <!--       <resource> -->
357 <!--         <directory>${project.build.directory}/plugins</directory> -->
358 <!--         <targetPath>elasticsearch/plugins</targetPath> -->
359 <!--       </resource> -->
360     </resources>
361     <plugins>
362       <plugin>
363         <groupId>org.apache.felix</groupId>
364         <artifactId>maven-bundle-plugin</artifactId>
365         <extensions>true</extensions>
366         <configuration>
367           <instructions>
368             <Import-Package>
369               org.opendaylight.controller.md.sal.binding.api;version="[1.6,2)",
370               org.opendaylight.controller.md.sal.common.api.data;version="[1.6,2)",
371               org.opendaylight.controller.sal.binding.api;version="[1.6,2)",
372               org.opendaylight.yangtools.concepts;version="[2.0,3)",
373               org.opendaylight.yangtools.yang.binding;version="[0.12,1)",
374               org.opendaylight.yangtools.yang.common;version="[2.0,3)",
375               org.osgi.framework,
376               org.osgi.service.blueprint.container,
377               org.slf4j;version="[1.7,2)",
378               org.slf4j.spi;version="[1.7,2)",
379               com.typesafe.config;version= "[1.3,2)",
380               org.json,
381               javax.annotation,
382               javax.net.ssl,
383               javax.xml.bind,
384               javax.xml.bind.annotation,
385               org.apache.commons.lang3.exception,
386
387               com.github.mustachejava;resolution:=optional,
388               com.sun.jna;resolution:=optional,
389               com.sun.jna.ptr;resolution:=optional,
390               com.sun.jna.win32;resolution:=optional,
391               com.vividsolutions.jts.algorithm;resolution:=optional,
392               com.vividsolutions.jts.geom;resolution:=optional,
393               com.vividsolutions.jts.geom.impl;resolution:=optional,
394               com.vividsolutions.jts.geom.prep;resolution:=optional,
395               com.vividsolutions.jts.io;resolution:=optional,
396               com.vividsolutions.jts.operation.union;resolution:=optional,
397               com.vividsolutions.jts.operation.valid;resolution:=optional,
398               com.vividsolutions.jts.util;resolution:=optional,
399               org.apache.log;
400               org.apache.log4j.helpers;resolution:=optional;version="[1.2,2)",
401               org.noggit;resolution:=optional,
402
403               com.google.common.base;version="[23.6,24)",
404               com.google.common.cache;version="[23.6,24)",
405               com.google.common.collect;version="[23.6,24)",
406               com.google.common.hash;version="[23.6,24)",
407               com.google.common.io;version="[23.6,24)",
408               com.google.common.math;version="[23.6,24)",
409               com.google.common.net;version="[23.6,24)",
410               com.google.common.primitives;version="[23.6,24)",
411               com.google.common.util.concurrent;version="[23.6,24)",
412
413               org.jboss.netty.bootstrap;version="[3.10,4)",
414               org.jboss.netty.buffer;version="[3.10,4)",
415               org.jboss.netty.channel;version="[3.10,4)",
416               org.jboss.netty.channel.socket.nio;version="[3.10,4)",
417               org.jboss.netty.channel.socket.oio;version="[3.10,4)",
418               org.jboss.netty.handler.codec.embedder;version="[3.10,4)",
419               org.jboss.netty.handler.codec.frame;version="[3.10,4)",
420               org.jboss.netty.handler.codec.http;version="[3.10,4)",
421               org.jboss.netty.handler.timeout;version="[3.10,4)",
422               org.jboss.netty.logging;version="[3.10,4)",
423               org.jboss.netty.util;version="[3.10,4)",
424
425               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.websocketmanager.rev150105,
426               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714;version="[1.4,2)",
427               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ptp.dataset.rev170208;version="[0.3,1)",
428               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ptp.dataset.rev170208.port.ds.entry;version="[0.3,1)",
429               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715;version="[2013.7,2014)",
430               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320;version="[0.3,1)",
431               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.equipment.g;version="[0.3,1)",
432               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.extension.g;version="[0.3,1)",
433               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.logical.termination.point.g;version="[0.3,1)",
434               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.manufactured.thing.g;version="[0.3,1)",
435               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.network.element;version="[0.3,1)",
436               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.g._874._1.model.rev170320;version="[0.3,1)",
437               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324;version="[0.3,1)",
438               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.air._interface.historical.performance.type.g;version="[0.3,1)",
439               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.container.historical.performance.type.g;version="[0.3,1)",
440               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.air._interface.diversity.pac;version="[0.3,1)",
441               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.air._interface.pac;version="[0.3,1)",
442               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.ethernet.container.pac;version="[0.3,1)",
443               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.hybrid.mw.structure.pac;version="[0.3,1)",
444               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.pure.ethernet.structure.pac;version="[0.3,1)",
445               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.tdm.container.pac;version="[0.3,1)",
446               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907;version="[0.3,1)",
447               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.air._interface.historical.performance.type.g;version="[0.3,1)",
448               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.container.historical.performance.type.g;version="[0.3,1)",
449               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.air._interface.diversity.pac;version="[0.3,1)",
450               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.air._interface.pac;version="[0.3,1)",
451               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.ethernet.container.pac;version="[0.3,1)",
452               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.hybrid.mw.structure.pac;version="[0.3,1)",
453               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.pure.ethernet.structure.pac;version="[0.3,1)",
454               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.tdm.container.pac;version="[0.3,1)",
455               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010;version="[0.3,1)",
456               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.air._interface.historical.performance.type.g;version="[0.3,1)",
457               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.container.historical.performance.type.g;version="[0.3,1)",
458               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.air._interface.diversity.pac;version="[0.3,1)",
459               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.air._interface.pac;version="[0.3,1)",
460               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.ethernet.container.pac;version="[0.3,1)",
461               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.hybrid.mw.structure.pac;version="[0.3,1)",
462               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.pure.ethernet.structure.pac;version="[0.3,1)",
463               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.tdm.container.pac;version="[0.3,1)",
464               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402;version="[0.3,1)",
465               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402.equipment.pac;version="[0.3,1)",
466               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402.network.element.current.problems.g;version="[0.3,1)",
467               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402.network.element.pac;version="[0.3,1)",
468               org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114;version="[1.7,2)",
469               org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf.node.connection.status;version="[1.7,2)",
470               org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.network.topology.topology.topology.types;version="[1.7,2)",
471               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109;version="[0.3,1)",
472               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109.maintenance.mode.g;version="[0.3,1)",
473               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109.maintenance.mode.g.filter;version="[0.3,1)",
474               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109.show.required.network.element.output;version="[0.3,1)",
475               org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021;version="[2013.10,2014)",
476               org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology;version="[2013.10,2014)",
477               org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology;version="[2013.10,2014)"
478             </Import-Package>
479             <Embed-Dependency>jackson*,ela*,delete-by-query,joda*,Hdr*,lucene*,
480               hppc,jsr166e,t-digest,snakeyaml,securesm,spatial4j,compress-lzf,commons-cli,jakarta-regexp,
481               commons-lang3,commons-collections,commons-logging,commons-beanutils</Embed-Dependency>
482             <Include-Resource>{maven-resources},{maven-dependencies},META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
483             <Embed-Transitive>true</Embed-Transitive>
484             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.*</Export-Package>
485           </instructions>
486         </configuration>
487       </plugin>
488     </plugins>
489   </build>
490 </project>
491