Unit test for ovsdb.southbound.ovsdb.transact
[netvirt.git] / openstack / net-virt-sfc / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Red Hat, Inc. 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"
9          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>karaf-parent</artifactId>
14     <version>1.6.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>openstack.net-virt-sfc-karaf</artifactId>
20   <version>1.2.1-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25   <properties>
26     <karaf.localFeature>odl-ovsdb-sfc-test</karaf.localFeature>
27   </properties>
28   <dependencies>
29     <dependency>
30       <!-- scope is compile so all features (there is only one) are installed
31       into startup.properties and the feature repo itself is not installed -->
32       <groupId>org.apache.karaf.features</groupId>
33       <artifactId>framework</artifactId>
34       <type>kar</type>
35     </dependency>
36
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>openstack.net-virt-sfc-features-test</artifactId>
40       <version>${project.version}</version>
41       <classifier>features</classifier>
42       <type>xml</type>
43       <scope>runtime</scope>
44     </dependency>
45   </dependencies>
46   <!-- DO NOT install or deploy the karaf artifact -->
47   <build>
48     <plugins>
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>