Bump versions by x.y.(z+1)
[neutron.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 Cisco Systems 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.controller</groupId>
11     <artifactId>karaf-parent</artifactId>
12     <version>1.7.5-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <modelVersion>4.0.0</modelVersion>
16   <groupId>org.opendaylight.neutron</groupId>
17   <artifactId>neutron-karaf</artifactId>
18   <version>0.7.5-SNAPSHOT</version>
19   <name>${project.artifactId}</name>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <karaf.localFeature>odl-neutron-neutron-logger-test</karaf.localFeature>
25     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
26   </properties>
27   <dependencies>
28     <dependency>
29       <!-- scope is compile so all features (there is only one) are installed
30       into startup.properties and the feature repo itself is not installed -->
31       <groupId>org.apache.karaf.features</groupId>
32       <artifactId>framework</artifactId>
33       <type>kar</type>
34     </dependency>
35
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>features-neutron-test</artifactId>
39       <version>${project.version}</version>
40       <classifier>features</classifier>
41       <type>xml</type>
42       <scope>runtime</scope>
43     </dependency>
44   </dependencies>
45
46   <build>
47     <plugins>
48       <!-- DO NOT deploy the karaf artifact -->
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-deploy-plugin</artifactId>
52         <configuration>
53           <skip>true</skip>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58 </project>