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