95c002c15c8e99f91bc2ad65413a19dd0e6d0909
[alto.git] / alto-basic / auto-maps / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 SNLAB 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>karaf-parent</artifactId>
14     <version>1.8.2-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.alto.basic</groupId>
19   <artifactId>alto-auto-maps-karaf</artifactId>
20   <version>0.4.2-SNAPSHOT</version>
21   <name>ODL :: alto :: ${project.artifactId}</name>
22
23   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26
27   <properties>
28     <karaf.localFeature>odl-alto-auto-maps-ui</karaf.localFeature>
29   </properties>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>${project.groupId}</groupId>
35         <artifactId>alto-auto-maps-artifacts</artifactId>
36         <version>${project.version}</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40     </dependencies>
41   </dependencyManagement>
42
43   <dependencies>
44     <dependency>
45       <!-- scope is compile so all features (there is only one) are installed
46       into startup.properties and the feature repo itself is not installed -->
47       <groupId>org.apache.karaf.features</groupId>
48       <artifactId>framework</artifactId>
49       <type>kar</type>
50     </dependency>
51
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>alto-auto-maps-features</artifactId>
55       <classifier>features</classifier>
56       <type>xml</type>
57       <scope>runtime</scope>
58     </dependency>
59   </dependencies>
60
61   <build>
62     <plugins>
63       <!-- DO NOT deploy the karaf artifact -->
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-deploy-plugin</artifactId>
67         <configuration>
68           <skip>true</skip>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73 </project>