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