d859b28b7cc2bc40cd40111edca3128cd84de12f
[transportpce.git] / features / odl-transportpce-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange 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 INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>single-feature-parent</artifactId>
15     <version>3.1.0</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce-cli</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>feature</packaging>
23
24   <properties>
25     <mdsal.model.version>0.12.3-SNAPSHOT</mdsal.model.version>
26     <mdsal.version>1.7.3-SNAPSHOT</mdsal.version>
27     <restconf.version>1.7.3-SNAPSHOT</restconf.version>
28     <yangtools.version>1.3.0-SNAPSHOT</yangtools.version>
29     <netconf.version>1.4.3-SNAPSHOT</netconf.version>
30     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
31   </properties>
32
33   <name>OpenDaylight :: transportpce :: CLI</name>
34
35   <dependencies>
36    <dependency>
37      <groupId>org.opendaylight.transportpce</groupId>
38      <artifactId>odl-transportpce</artifactId>
39      <version>${project.version}</version>
40      <classifier>features</classifier>
41      <type>xml</type>
42    </dependency>
43    <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>transportpce-cli</artifactId>
46       <version>${project.version}</version>
47     </dependency>
48   </dependencies>
49
50   <build>
51      <plugins>
52      <plugin>
53        <groupId>org.apache.felix</groupId>
54        <artifactId>maven-bundle-plugin</artifactId>
55        <extensions>true</extensions>
56        <configuration>
57          <instructions>
58            <!-- This bundle works with Karaf 3 and 4.0, see https://wiki.opendaylight.org/view/Karaf_4_migration#Karaf_CLI_commands -->
59            <Import-Package>
60              org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
61              org.apache.karaf.shell.console;version="[3.0.0,4.1)",
62              *
63            </Import-Package>
64          </instructions>
65        </configuration>
66      </plugin>
67    </plugins>
68   </build>
69 </project>