Refactor OVSDB Neutron Code
[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   <packaging>jar</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.yaml</groupId>
19       <artifactId>snakeyaml</artifactId>
20     </dependency>
21     <!-- Add Pax Exam -->
22     <dependency>
23       <groupId>org.ops4j.pax.exam</groupId>
24       <artifactId>pax-exam</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.ops4j.pax.exam</groupId>
28       <artifactId>pax-exam-container-native</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.ops4j.pax.exam</groupId>
32       <artifactId>pax-exam-junit4</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.ops4j.pax.exam</groupId>
36       <artifactId>pax-exam-link-mvn</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.ops4j.pax.url</groupId>
40       <artifactId>pax-url-aether</artifactId>
41     </dependency>
42   </dependencies>
43   <build>
44     <pluginManagement>
45       <plugins>
46         <plugin>
47           <groupId>org.eclipse.m2e</groupId>
48           <artifactId>lifecycle-mapping</artifactId>
49           <version>${lifecycle.mapping.version}</version>
50           <configuration>
51             <lifecycleMappingMetadata>
52               <pluginExecutions>
53                 <pluginExecution>
54                   <pluginExecutionFilter>
55                     <groupId>org.apache.servicemix.tooling</groupId>
56                     <artifactId>depends-maven-plugin</artifactId>
57                     <executions>
58                       <execution>
59                         <id>generate-depends-file</id>
60                         <goals>
61                           <goal>generate-depends-file</goal>
62                         </goals>
63                       </execution>
64                     </executions>
65                   </pluginExecutionFilter>
66                   <action>
67                     <ignore/>
68                   </action>
69                 </pluginExecution>
70               </pluginExecutions>
71             </lifecycleMappingMetadata>
72           </configuration>
73         </plugin>
74       </plugins>
75     </pluginManagement>
76     <plugins>
77       <plugin>
78         <groupId>org.apache.servicemix.tooling</groupId>
79         <artifactId>depends-maven-plugin</artifactId>
80         <executions>
81           <execution>
82             <id>generate-depends-file</id>
83             <goals>
84               <goal>generate-depends-file</goal>
85             </goals>
86           </execution>
87         </executions>
88       </plugin>
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-checkstyle-plugin</artifactId>
92       </plugin>
93       <plugin>
94         <groupId>org.jacoco</groupId>
95         <artifactId>jacoco-maven-plugin</artifactId>
96       </plugin>
97       <plugin>
98         <groupId>org.apache.maven.plugins</groupId>
99         <artifactId>maven-failsafe-plugin</artifactId>
100         <version>${failsafe.version}</version>
101         <executions>
102           <execution>
103             <id>failsafe-integration-tests</id>
104             <phase>integration-test</phase>
105             <goals>
106               <goal>integration-test</goal>
107             </goals>
108             <configuration>
109               <forkCount>1</forkCount>
110               <reuseForks>false</reuseForks>
111               <parallel>none</parallel>
112               <threadCount>1</threadCount>
113               <excludes>
114               <!-- Disabling NorthboundIT tests till the issues are resolved in Jenkins -->
115                 <exclude>**/*NorthboundIT*</exclude>
116               </excludes>
117             </configuration>
118           </execution>
119         </executions>
120       </plugin>
121     </plugins>
122   </build>
123   <scm>
124     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
125     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
126     <tag>HEAD</tag>
127     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
128   </scm>
129 </project>