Merge "Bug 1885: VM ingress rule is not installed for vlan networking"
[netvirt.git] / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.ovsdb</groupId>
7     <artifactId>commons.integrationtest</artifactId>
8     <version>1.2.0-SNAPSHOT</version>
9     <relativePath>../commons/integrationtest</relativePath>
10   </parent>
11
12   <artifactId>integrationtest</artifactId>
13   <version>1.2.0-SNAPSHOT</version>
14   <name>OpenDaylight OVSDB Integration Tests</name>
15   <packaging>jar</packaging>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.yaml</groupId>
20       <artifactId>snakeyaml</artifactId>
21     </dependency>
22     <!-- Add Pax Exam -->
23     <dependency>
24       <groupId>org.ops4j.pax.exam</groupId>
25       <artifactId>pax-exam</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.ops4j.pax.exam</groupId>
29       <artifactId>pax-exam-container-native</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.ops4j.pax.exam</groupId>
33       <artifactId>pax-exam-junit4</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.ops4j.pax.exam</groupId>
37       <artifactId>pax-exam-link-mvn</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.ops4j.pax.url</groupId>
41       <artifactId>pax-url-aether</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-all</artifactId>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49   <build>
50     <pluginManagement>
51       <plugins>
52         <plugin>
53           <groupId>org.eclipse.m2e</groupId>
54           <artifactId>lifecycle-mapping</artifactId>
55           <version>${lifecycle.mapping.version}</version>
56           <configuration>
57             <lifecycleMappingMetadata>
58               <pluginExecutions>
59                 <pluginExecution>
60                   <pluginExecutionFilter>
61                     <groupId>org.apache.servicemix.tooling</groupId>
62                     <artifactId>depends-maven-plugin</artifactId>
63                     <executions>
64                       <execution>
65                         <id>generate-depends-file</id>
66                         <goals>
67                           <goal>generate-depends-file</goal>
68                         </goals>
69                       </execution>
70                     </executions>
71                   </pluginExecutionFilter>
72                   <action>
73                     <ignore/>
74                   </action>
75                 </pluginExecution>
76               </pluginExecutions>
77             </lifecycleMappingMetadata>
78           </configuration>
79         </plugin>
80       </plugins>
81     </pluginManagement>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.servicemix.tooling</groupId>
85         <artifactId>depends-maven-plugin</artifactId>
86         <executions>
87           <execution>
88             <id>generate-depends-file</id>
89             <goals>
90               <goal>generate-depends-file</goal>
91             </goals>
92           </execution>
93         </executions>
94       </plugin>
95       <plugin>
96         <groupId>org.apache.maven.plugins</groupId>
97         <artifactId>maven-checkstyle-plugin</artifactId>
98       </plugin>
99       <plugin>
100         <groupId>org.jacoco</groupId>
101         <artifactId>jacoco-maven-plugin</artifactId>
102       </plugin>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-failsafe-plugin</artifactId>
106         <version>${failsafe.version}</version>
107         <executions>
108           <execution>
109             <id>failsafe-integration-tests</id>
110             <phase>integration-test</phase>
111             <goals>
112               <goal>integration-test</goal>
113             </goals>
114             <configuration>
115               <forkCount>1</forkCount>
116               <reuseForks>false</reuseForks>
117               <parallel>none</parallel>
118               <threadCount>1</threadCount>
119               <excludes>
120               <!-- Disabling NorthboundIT tests till the issues are resolved in Jenkins -->
121                 <exclude>**/*NorthboundIT*</exclude>
122               </excludes>
123             </configuration>
124           </execution>
125         </executions>
126       </plugin>
127     </plugins>
128   </build>
129   <scm>
130     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
131     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
132     <tag>HEAD</tag>
133     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
134   </scm>
135 </project>