e93e09a2f470e997e6b2ad9d53c32e050f569749
[controller.git] / opendaylight / md-sal / mdsal-trace / cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Red Hat and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>mdsal-parent</artifactId>
16     <version>1.9.0-SNAPSHOT</version>
17     <relativePath>../../parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.controller</groupId>
21   <artifactId>mdsal-trace-cli</artifactId>
22   <version>1.9.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>mdsal-trace-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.karaf.shell</groupId>
32       <artifactId>org.apache.karaf.shell.core</artifactId>
33       <exclusions>
34         <exclusion>
35           <groupId>*</groupId>
36           <artifactId>*</artifactId>
37         </exclusion>
38       </exclusions>
39     </dependency>
40   </dependencies>
41
42   <build>
43     <plugins>
44       <plugin>
45         <groupId>org.apache.felix</groupId>
46         <artifactId>maven-bundle-plugin</artifactId>
47         <extensions>true</extensions>
48         <configuration>
49           <instructions>
50             <Karaf-Commands>*</Karaf-Commands>
51           </instructions>
52         </configuration>
53       </plugin>
54     </plugins>
55   </build>
56 </project>