Musings towards making dummyprovider accessible
[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.5.0-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.5.0-SNAPSHOT</version>
19   <name>${project.artifactId}</name>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <karaf.localFeature>odl-neutron-dummyprovider-test</karaf.localFeature>
25   </properties>
26   <dependencies>
27     <dependency>
28       <!-- scope is compile so all features (there is only one) are installed
29       into startup.properties and the feature repo itself is not installed -->
30       <groupId>org.apache.karaf.features</groupId>
31       <artifactId>framework</artifactId>
32       <type>kar</type>
33     </dependency>
34
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>features-neutron-test</artifactId>
38       <version>${project.version}</version>
39       <classifier>features</classifier>
40       <type>xml</type>
41       <scope>runtime</scope>
42     </dependency>
43   </dependencies>
44 </project>