Merge "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.ovsdb</groupId>
16     <artifactId>it</artifactId>
17     <version>1.2.1-SNAPSHOT</version>
18     <relativePath>../../../commons/it</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>jar</packaging>
26
27   <properties>
28     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
29     <karaf.distro.artifactId>openstack.net-virt-sfc-karaf</karaf.distro.artifactId>
30     <karaf.distro.version>1.0.0-SNAPSHOT</karaf.distro.version>
31     <karaf.distro.type>zip</karaf.distro.type>
32   </properties>
33
34   <dependencies>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>openstack.net-virt-sfc-features</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40   </dependencies>
41
42   <profiles>
43     <profile>
44       <id>default</id>
45       <activation>
46         <activeByDefault>true</activeByDefault>
47       </activation>
48       <properties>
49         <skipITs>true</skipITs>
50       </properties>
51     </profile>
52     <profile>
53       <id>integrationtest</id>
54       <activation>
55         <activeByDefault>false</activeByDefault>
56       </activation>
57       <properties>
58         <skipITs>false</skipITs>
59       </properties>
60     </profile>
61   </profiles>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.jacoco</groupId>
67         <artifactId>jacoco-maven-plugin</artifactId>
68       </plugin>
69       <plugin>
70         <artifactId>maven-failsafe-plugin</artifactId>
71       </plugin>
72     </plugins>
73   </build>
74
75 </project>