Migrate to odlparent 1.8.0-Carbon
[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.odlparent</groupId>
11     <artifactId>karaf-parent</artifactId>
12     <version>1.8.0-Carbon</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.9.0-SNAPSHOT</version>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: neutron :: ${project.artifactId}</name>
22   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25   <properties>
26     <karaf.localFeature>odl-neutron-neutron-logger-test</karaf.localFeature>
27     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
28   </properties>
29   <dependencies>
30     <dependency>
31       <!-- scope is compile so all features (there is only one) are installed
32       into startup.properties and the feature repo itself is not installed -->
33       <groupId>org.apache.karaf.features</groupId>
34       <artifactId>framework</artifactId>
35       <type>kar</type>
36     </dependency>
37
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>features-neutron-test</artifactId>
41       <version>${project.version}</version>
42       <classifier>features</classifier>
43       <type>xml</type>
44       <scope>runtime</scope>
45     </dependency>
46   </dependencies>
47
48   <build>
49     <plugins>
50       <!-- DO NOT deploy the karaf artifact -->
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     </plugins>
59   </build>
60 </project>