Release mdsal
[mdsal.git] / trace / 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     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>13.0.1</version>
16         <relativePath>../../bundle-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-trace-cli</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.mdsal</groupId>
25             <artifactId>mdsal-trace-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.apache.karaf.shell</groupId>
29             <artifactId>org.apache.karaf.shell.core</artifactId>
30             <scope>provided</scope>
31         </dependency>
32     </dependencies>
33
34     <build>
35         <plugins>
36             <plugin>
37                 <groupId>org.apache.felix</groupId>
38                 <artifactId>maven-bundle-plugin</artifactId>
39                 <extensions>true</extensions>
40                 <configuration>
41                     <instructions>
42                         <Karaf-Commands>*</Karaf-Commands>
43                     </instructions>
44                 </configuration>
45             </plugin>
46         </plugins>
47     </build>
48 </project>