Use dpl portId
[netvirt.git] / netvirt / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 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.netvirt</groupId>
16     <artifactId>it</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/it</relativePath>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.netvirt</groupId>
23   <artifactId>netvirt-it</artifactId>
24   <version>1.3.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26
27   <properties>
28     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
29     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
30     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
31     <karaf.distro.artifactId>karaf</karaf.distro.artifactId>
32     <karaf.distro.version>${project.version}</karaf.distro.version>
33     <karaf.distro.type>zip</karaf.distro.type>
34   </properties>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-binding-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-common-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>config-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>features-netvirt</artifactId>
52       <version>${project.version}</version>
53       <classifier>features</classifier>
54       <type>xml</type>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.ovsdb</groupId>
58       <artifactId>southbound-api</artifactId>
59       <version>${ovsdb.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>utils.it-utils</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>utils.mdsal-utils</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>utils.neutron-utils</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>utils.mdsal-utils</artifactId>
79       <version>${ovsdb.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.ovsdb</groupId>
83       <artifactId>utils.southbound-utils</artifactId>
84       <version>${ovsdb.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.codehaus.sonar-plugins.java</groupId>
88       <artifactId>sonar-jacoco-listeners</artifactId>
89       <scope>test</scope>
90     </dependency>
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.jacoco</groupId>
97         <artifactId>jacoco-maven-plugin</artifactId>
98       </plugin>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-checkstyle-plugin</artifactId>
102         <configuration>
103           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-failsafe-plugin</artifactId>
109         <configuration>
110         <!--<excludes>
111             <exclude>**/NetvirtIT.java</exclude>
112           </excludes>-->
113         </configuration>
114       </plugin>
115     </plugins>
116   </build>
117
118 </project>