a6fa8f91f27c66c19835356effdb1772c79b3f23
[transportpce.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9     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>karaf4-parent</artifactId>
15     <version>10.0.2</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-karaf</artifactId>
21   <version>5.0.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23   <name>${project.artifactId}</name>
24
25   <properties>
26     <karaf.localFeature>odl-transportpce</karaf.localFeature>
27     <device.yang.jar.extract.directory>
28       ${project.build.outputDirectory}/../yang-models/schema
29     </device.yang.jar.extract.directory>
30     <device.yang.final.directory>
31       ${project.build.outputDirectory}/../assembly/cache/schema
32     </device.yang.final.directory>
33   </properties>
34
35   <dependencies>
36     <dependency>
37       <!-- scope is compile so all features (there is only one) are installed into startup.properties
38                 and the feature repo itself is not installed -->
39       <groupId>org.apache.karaf.features</groupId>
40       <artifactId>framework</artifactId>
41       <type>kar</type>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>odl-transportpce</artifactId>
46       <version>${project.version}</version>
47       <classifier>features</classifier>
48       <type>xml</type>
49       <scope>runtime</scope>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>odl-transportpce-tapi</artifactId>
54       <version>${project.version}</version>
55       <classifier>features</classifier>
56       <type>xml</type>
57       <scope>runtime</scope>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>odl-transportpce-inventory</artifactId>
62       <version>${project.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65       <scope>runtime</scope>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>odl-transportpce-nbinotifications</artifactId>
70       <version>${project.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>odl-transportpce-dmaap-client</artifactId>
78       <version>${project.version}</version>
79       <classifier>features</classifier>
80       <type>xml</type>
81       <scope>runtime</scope>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>odl-transportpce-swagger</artifactId>
86       <version>${project.version}</version>
87       <classifier>features</classifier>
88       <type>xml</type>
89       <scope>runtime</scope>
90     </dependency>
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.apache.maven.plugins</groupId>
97         <artifactId>maven-deploy-plugin</artifactId>
98         <configuration>
99           <skip>true</skip>
100         </configuration>
101       </plugin>
102     </plugins>
103   </build>
104 </project>