Merge "SDN-R add historical alarm viewer"
[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.2-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.2-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.opendaylight.mdsal</groupId>
102       <artifactId>mdsal-singleton-common-api</artifactId>
103       <scope>provided</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.json</groupId>
107       <artifactId>json</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>com.typesafe.akka</groupId>
111       <artifactId>akka-actor_2.12</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>com.typesafe.akka</groupId>
115       <artifactId>akka-cluster_2.12</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.osgi</groupId>
119       <artifactId>org.osgi.compendium</artifactId>
120     </dependency>
121
122         <!-- Elasticsearch dependencies below should be part of this bundle -->
123         <!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
124         <!-- Includes all implicit dependencies -->
125
126     <dependency>
127       <groupId>org.elasticsearch</groupId>
128       <artifactId>elasticsearch</artifactId>
129       <version>2.2.0</version>
130       <scope>provided</scope>
131     </dependency>
132     <dependency>
133       <groupId>com.spatial4j</groupId>
134       <artifactId>spatial4j</artifactId>
135       <version>0.5</version>
136       <scope>provided</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.elasticsearch</groupId>
140       <artifactId>securesm</artifactId>
141       <version>1.0</version>
142       <scope>provided</scope>
143     </dependency>
144     <dependency>
145       <groupId>com.carrotsearch</groupId>
146       <artifactId>hppc</artifactId>
147       <version>0.7.1</version>
148       <scope>provided</scope>
149     </dependency>
150     <dependency>
151       <groupId>joda-time</groupId>
152       <artifactId>joda-time</artifactId>
153       <version>2.8.2</version>
154       <scope>provided</scope>
155     </dependency>
156     <dependency>
157       <groupId>org.joda</groupId>
158       <artifactId>joda-convert</artifactId>
159       <version>1.2</version>
160       <scope>provided</scope>
161     </dependency>
162     <dependency>
163       <groupId>com.fasterxml.jackson.core</groupId>
164       <artifactId>jackson-core</artifactId>
165       <version>2.6.3</version>
166       <scope>provided</scope>
167     </dependency>
168     <dependency>
169       <groupId>com.fasterxml.jackson.core</groupId>
170       <artifactId>jackson-annotations</artifactId>
171       <version>2.6.3</version>
172       <scope>provided</scope>
173     </dependency>
174     <dependency>
175       <groupId>com.fasterxml.jackson.core</groupId>
176       <artifactId>jackson-databind</artifactId>
177       <version>2.6.3</version>
178       <scope>provided</scope>
179     </dependency>
180     <dependency>
181       <groupId>com.fasterxml.jackson.dataformat</groupId>
182       <artifactId>jackson-dataformat-smile</artifactId>
183       <version>2.6.3</version>
184       <scope>provided</scope>
185     </dependency>
186     <dependency>
187       <groupId>com.fasterxml.jackson.dataformat</groupId>
188       <artifactId>jackson-dataformat-yaml</artifactId>
189       <version>2.6.3</version>
190       <scope>provided</scope>
191     </dependency>
192     <dependency>
193       <groupId>com.fasterxml.jackson.dataformat</groupId>
194       <artifactId>jackson-dataformat-cbor</artifactId>
195       <version>2.6.3</version>
196       <scope>provided</scope>
197     </dependency>
198     <dependency>
199       <groupId>org.yaml</groupId>
200       <artifactId>snakeyaml</artifactId>
201       <version>1.15</version>
202       <scope>provided</scope>
203     </dependency>
204 <!--     <dependency> -->
205 <!--       <groupId>io.netty</groupId> -->
206 <!--       <artifactId>netty</artifactId> -->
207 <!--       <version>3.10.5.Final</version> -->
208 <!--       <scope>provided</scope> -->
209 <!--     </dependency> -->
210     <dependency>
211       <groupId>com.ning</groupId>
212       <artifactId>compress-lzf</artifactId>
213       <version>1.0.2</version>
214       <scope>provided</scope>
215     </dependency>
216     <dependency>
217       <groupId>com.tdunning</groupId>
218       <artifactId>t-digest</artifactId>
219       <version>3.0</version>
220       <scope>provided</scope>
221     </dependency>
222     <dependency>
223       <groupId>org.hdrhistogram</groupId>
224       <artifactId>HdrHistogram</artifactId>
225       <version>2.1.6</version>
226       <scope>provided</scope>
227     </dependency>
228     <dependency>
229       <groupId>com.twitter</groupId>
230       <artifactId>jsr166e</artifactId>
231       <version>1.1.0</version>
232       <scope>provided</scope>
233     </dependency>
234     <dependency>
235       <groupId>org.apache.lucene</groupId>
236       <artifactId>lucene-core</artifactId>
237       <version>5.4.1</version>
238       <scope>provided</scope>
239     </dependency>
240     <dependency>
241       <groupId>org.apache.lucene</groupId>
242       <artifactId>lucene-backward-codecs</artifactId>
243       <version>5.4.1</version>
244       <scope>provided</scope>
245     </dependency>
246     <dependency>
247       <groupId>org.apache.lucene</groupId>
248       <artifactId>lucene-analyzers-common</artifactId>
249       <version>5.4.1</version>
250       <scope>provided</scope>
251     </dependency>
252     <dependency>
253       <groupId>org.apache.lucene</groupId>
254       <artifactId>lucene-queries</artifactId>
255       <version>5.4.1</version>
256       <scope>provided</scope>
257     </dependency>
258     <dependency>
259       <groupId>org.apache.lucene</groupId>
260       <artifactId>lucene-memory</artifactId>
261       <version>5.4.1</version>
262       <scope>provided</scope>
263     </dependency>
264     <dependency>
265       <groupId>org.apache.lucene</groupId>
266       <artifactId>lucene-highlighter</artifactId>
267       <version>5.4.1</version>
268       <scope>provided</scope>
269     </dependency>
270     <dependency>
271       <groupId>org.apache.lucene</groupId>
272       <artifactId>lucene-queryparser</artifactId>
273       <version>5.4.1</version>
274       <scope>provided</scope>
275     </dependency>
276     <dependency>
277       <groupId>org.apache.lucene</groupId>
278       <artifactId>lucene-sandbox</artifactId>
279       <version>5.4.1</version>
280       <scope>provided</scope>
281     </dependency>
282     <dependency>
283       <groupId>org.apache.lucene</groupId>
284       <artifactId>lucene-suggest</artifactId>
285       <version>5.4.1</version>
286       <scope>provided</scope>
287     </dependency>
288     <dependency>
289       <groupId>org.apache.lucene</groupId>
290       <artifactId>lucene-misc</artifactId>
291       <version>5.4.1</version>
292       <scope>provided</scope>
293     </dependency>
294     <dependency>
295       <groupId>org.apache.lucene</groupId>
296       <artifactId>lucene-join</artifactId>
297       <version>5.4.1</version>
298       <scope>provided</scope>
299     </dependency>
300     <dependency>
301       <groupId>org.apache.lucene</groupId>
302       <artifactId>lucene-grouping</artifactId>
303       <version>5.4.1</version>
304       <scope>provided</scope>
305     </dependency>
306     <dependency>
307       <groupId>org.apache.lucene</groupId>
308       <artifactId>lucene-spatial</artifactId>
309       <version>5.4.1</version>
310       <scope>provided</scope>
311     </dependency>
312     <dependency>
313       <groupId>org.apache.lucene</groupId>
314       <artifactId>lucene-spatial3d</artifactId>
315       <version>5.4.1</version>
316       <scope>provided</scope>
317     </dependency>
318     <dependency>
319       <groupId>jakarta-regexp</groupId>
320       <artifactId>jakarta-regexp</artifactId>
321       <version>1.4</version>
322       <scope>provided</scope>
323     </dependency>
324     <dependency>
325       <groupId>commons-collections</groupId>
326       <artifactId>commons-collections</artifactId>
327       <version>3.2.2</version>
328       <scope>provided</scope>
329     </dependency>
330     <dependency>
331       <groupId>commons-logging</groupId>
332       <artifactId>commons-logging</artifactId>
333       <version>1.2</version>
334       <scope>provided</scope>
335     </dependency>
336     <dependency>
337       <groupId>commons-cli</groupId>
338       <artifactId>commons-cli</artifactId>
339       <version>1.3.1</version>
340       <scope>provided</scope>
341     </dependency>
342     <dependency>
343       <groupId>org.apache.commons</groupId>
344       <artifactId>commons-lang3</artifactId>
345       <version>3.4</version>
346       <scope>provided</scope>
347     </dependency>
348     <dependency>
349       <groupId>org.elasticsearch.plugin</groupId>
350       <artifactId>delete-by-query</artifactId>
351       <version>2.2.0</version>
352       <scope>provided</scope>
353     </dependency>
354   </dependencies>
355   <build>
356     <resources>
357       <resource>
358         <directory>src/main/resources</directory>
359         <filtering>true</filtering>
360       </resource>
361 <!--       <resource> -->
362 <!--         <directory>${project.build.directory}/plugins</directory> -->
363 <!--         <targetPath>elasticsearch/plugins</targetPath> -->
364 <!--       </resource> -->
365     </resources>
366     <plugins>
367       <plugin>
368         <groupId>org.apache.felix</groupId>
369         <artifactId>maven-bundle-plugin</artifactId>
370         <extensions>true</extensions>
371         <configuration>
372           <instructions>
373             <Import-Package>
374               org.opendaylight.controller.md.sal.binding.api;version="[1.6,2)",
375               org.opendaylight.controller.md.sal.common.api.data;version="[1.6,2)",
376               org.opendaylight.controller.sal.binding.api;version="[1.6,2)",
377               org.opendaylight.mdsal.singleton.common.api;version="[2.0,3)",
378               org.opendaylight.yangtools.concepts;version="[2.0,3)",
379               org.opendaylight.yangtools.yang.binding;version="[0.12,1)",
380               org.opendaylight.yangtools.yang.common;version="[2.0,3)",
381               org.osgi.framework,
382               org.osgi.service.blueprint.container,
383               org.slf4j;version="[1.7,2)",
384               org.slf4j.spi;version="[1.7,2)",
385               com.typesafe.config;version= "[1.3,2)",
386               org.json,
387               javax.annotation,
388               javax.net.ssl,
389               javax.xml.bind,
390               javax.xml.bind.annotation,
391               org.apache.commons.lang3.exception,
392
393               com.github.mustachejava;resolution:=optional,
394               com.sun.jna;resolution:=optional,
395               com.sun.jna.ptr;resolution:=optional,
396               com.sun.jna.win32;resolution:=optional,
397               com.vividsolutions.jts.algorithm;resolution:=optional,
398               com.vividsolutions.jts.geom;resolution:=optional,
399               com.vividsolutions.jts.geom.impl;resolution:=optional,
400               com.vividsolutions.jts.geom.prep;resolution:=optional,
401               com.vividsolutions.jts.io;resolution:=optional,
402               com.vividsolutions.jts.operation.union;resolution:=optional,
403               com.vividsolutions.jts.operation.valid;resolution:=optional,
404               com.vividsolutions.jts.util;resolution:=optional,
405               org.apache.log;
406               org.apache.log4j.helpers;resolution:=optional;version="[1.2,2)",
407               org.noggit;resolution:=optional,
408
409               com.google.common.base;version="[23.6,24)",
410               com.google.common.cache;version="[23.6,24)",
411               com.google.common.collect;version="[23.6,24)",
412               com.google.common.hash;version="[23.6,24)",
413               com.google.common.io;version="[23.6,24)",
414               com.google.common.math;version="[23.6,24)",
415               com.google.common.net;version="[23.6,24)",
416               com.google.common.primitives;version="[23.6,24)",
417               com.google.common.util.concurrent;version="[23.6,24)",
418
419               org.jboss.netty.bootstrap;version="[3.10,4)",
420               org.jboss.netty.buffer;version="[3.10,4)",
421               org.jboss.netty.channel;version="[3.10,4)",
422               org.jboss.netty.channel.socket.nio;version="[3.10,4)",
423               org.jboss.netty.channel.socket.oio;version="[3.10,4)",
424               org.jboss.netty.handler.codec.embedder;version="[3.10,4)",
425               org.jboss.netty.handler.codec.frame;version="[3.10,4)",
426               org.jboss.netty.handler.codec.http;version="[3.10,4)",
427               org.jboss.netty.handler.timeout;version="[3.10,4)",
428               org.jboss.netty.logging;version="[3.10,4)",
429               org.jboss.netty.util;version="[3.10,4)",
430
431               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.websocketmanager.rev150105,
432               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714;version="[1.4,2)",
433               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ptp.dataset.rev170208;version="[0.3,1)",
434               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ptp.dataset.rev170208.port.ds.entry;version="[0.3,1)",
435               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715;version="[2013.7,2014)",
436               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320;version="[0.3,1)",
437               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.equipment.g;version="[0.3,1)",
438               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.extension.g;version="[0.3,1)",
439               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.logical.termination.point.g;version="[0.3,1)",
440               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.manufactured.thing.g;version="[0.3,1)",
441               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.core.model.rev170320.network.element;version="[0.3,1)",
442               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.g._874._1.model.rev170320;version="[0.3,1)",
443               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324;version="[0.3,1)",
444               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.air._interface.historical.performance.type.g;version="[0.3,1)",
445               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.container.historical.performance.type.g;version="[0.3,1)",
446               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.air._interface.diversity.pac;version="[0.3,1)",
447               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.air._interface.pac;version="[0.3,1)",
448               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.ethernet.container.pac;version="[0.3,1)",
449               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.hybrid.mw.structure.pac;version="[0.3,1)",
450               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.pure.ethernet.structure.pac;version="[0.3,1)",
451               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.mw.tdm.container.pac;version="[0.3,1)",
452               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907;version="[0.3,1)",
453               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.air._interface.historical.performance.type.g;version="[0.3,1)",
454               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.container.historical.performance.type.g;version="[0.3,1)",
455               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.air._interface.diversity.pac;version="[0.3,1)",
456               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.air._interface.pac;version="[0.3,1)",
457               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.ethernet.container.pac;version="[0.3,1)",
458               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.hybrid.mw.structure.pac;version="[0.3,1)",
459               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.pure.ethernet.structure.pac;version="[0.3,1)",
460               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev180907.mw.tdm.container.pac;version="[0.3,1)",
461               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010;version="[0.3,1)",
462               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.air._interface.historical.performance.type.g;version="[0.3,1)",
463               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.container.historical.performance.type.g;version="[0.3,1)",
464               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.air._interface.diversity.pac;version="[0.3,1)",
465               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.air._interface.pac;version="[0.3,1)",
466               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.ethernet.container.pac;version="[0.3,1)",
467               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.hybrid.mw.structure.pac;version="[0.3,1)",
468               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.pure.ethernet.structure.pac;version="[0.3,1)",
469               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev181010.mw.tdm.container.pac;version="[0.3,1)",
470               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402;version="[0.3,1)",
471               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402.equipment.pac;version="[0.3,1)",
472               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)",
473               org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.onf.core.model.conditional.packages.rev170402.network.element.pac;version="[0.3,1)",
474               org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114;version="[1.7,2)",
475               org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf.node.connection.status;version="[1.7,2)",
476               org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.network.topology.topology.topology.types;version="[1.7,2)",
477               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109;version="[0.3,1)",
478               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109.maintenance.mode.g;version="[0.3,1)",
479               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109.maintenance.mode.g.filter;version="[0.3,1)",
480               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.rev190109.show.required.network.element.output;version="[0.3,1)",
481               org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021;version="[2013.10,2014)",
482               org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology;version="[2013.10,2014)",
483               org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology;version="[2013.10,2014)"
484             </Import-Package>
485             <Embed-Dependency>jackson*,ela*,delete-by-query,joda*,Hdr*,lucene*,
486               hppc,jsr166e,t-digest,snakeyaml,securesm,spatial4j,compress-lzf,commons-cli,jakarta-regexp,
487               commons-lang3,commons-collections,commons-logging,commons-beanutils</Embed-Dependency>
488             <Include-Resource>{maven-resources},{maven-dependencies},META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
489             <Embed-Transitive>true</Embed-Transitive>
490             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.devicemanager.*</Export-Package>
491           </instructions>
492         </configuration>
493       </plugin>
494     </plugins>
495   </build>
496 </project>
497