Add UT for SouthboundMapper and SouthboundProvider
[netvirt.git] / openstack / net-virt-sfc / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>mdsal-it-parent</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.ovsdb</groupId>
23   <artifactId>openstack.net-virt-sfc-it</artifactId>
24   <version>1.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <skipITs>false</skipITs>
29     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
30     <karaf.distro.artifactId>openstack.net-virt-sfc-karaf</karaf.distro.artifactId>
31     <karaf.distro.version>1.0.0-SNAPSHOT</karaf.distro.version>
32     <karaf.distro.type>zip</karaf.distro.type>
33   </properties>
34
35   <dependencies>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>openstack.net-virt-sfc-features</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41   </dependencies>
42
43   <profiles>
44     <profile>
45       <id>default</id>
46       <activation>
47         <activeByDefault>true</activeByDefault>
48       </activation>
49       <properties>
50         <skipITs>true</skipITs>
51       </properties>
52     </profile>
53     <profile>
54       <id>integrationtest</id>
55       <activation>
56         <activeByDefault>false</activeByDefault>
57       </activation>
58       <properties>
59         <skipITs>false</skipITs>
60       </properties>
61     </profile>
62   </profiles>
63 </project>