Bump versions by x.y.(z+1)
[alto.git] / alto-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Open Daylight ALTO group 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   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>karaf-parent</artifactId>
12     <version>1.8.3-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <modelVersion>4.0.0</modelVersion>
16   <groupId>org.opendaylight.alto</groupId>
17   <artifactId>alto-karaf</artifactId>
18   <version>0.4.3-SNAPSHOT</version>
19   <name>ODL :: alto :: ${project.artifactId}</name>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <karaf.localFeature>odl-alto-release</karaf.localFeature>
25   </properties>
26   <dependencyManagement>
27     <dependencies>
28     </dependencies>
29   </dependencyManagement>
30   <dependencies>
31     <dependency>
32       <!-- scope is compile so all features (there is only one) are installed
33       into startup.properties and the feature repo itself is not installed -->
34       <groupId>org.apache.karaf.features</groupId>
35       <artifactId>framework</artifactId>
36       <type>kar</type>
37     </dependency>
38
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>features-alto-release</artifactId>
42       <version>${project.version}</version>
43       <classifier>features</classifier>
44       <type>xml</type>
45       <scope>runtime</scope>
46     </dependency>
47   </dependencies>
48   <!-- DO NOT install or deploy the karaf artifact -->
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-deploy-plugin</artifactId>
54         <configuration>
55           <skip>true</skip>
56         </configuration>
57       </plugin>
58       <plugin>
59         <groupId>org.apache.maven.plugins</groupId>
60         <artifactId>maven-install-plugin</artifactId>
61         <configuration>
62           <skip>true</skip>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67 </project>