Fix netvirtsfc flows
[ovsdb.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.2.1-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>${project.version}</karaf.distro.version>
31     <karaf.distro.type>zip</karaf.distro.type>
32   </properties>
33
34   <dependencyManagement>
35     <dependencies>
36       <dependency>
37         <groupId>${project.groupId}</groupId>
38         <artifactId>openstack.net-virt-sfc-artifacts</artifactId>
39         <version>${project.version}</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43     </dependencies>
44   </dependencyManagement>
45
46   <dependencies>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>openstack.net-virt-sfc-features-test</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>utils.mdsal-utils</artifactId>
55       <version>${project.version}</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>utils.southbound-utils</artifactId>
61       <version>${project.version}</version>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>concepts</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.codehaus.sonar-plugins.java</groupId>
71       <artifactId>sonar-jacoco-listeners</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.jacoco</groupId>
80         <artifactId>jacoco-maven-plugin</artifactId>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-checkstyle-plugin</artifactId>
85         <configuration>
86           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
87         </configuration>
88       </plugin>
89       <plugin>
90         <artifactId>maven-failsafe-plugin</artifactId>
91         <configuration>
92           <excludes>
93             <exclude>**/NetvirtSfcIT.java</exclude>
94           </excludes>
95         </configuration>
96       </plugin>
97     </plugins>
98   </build>
99
100 </project>