Enable OVSDB northbound V2 integration tests.
[ovsdb.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.3.0-SNAPSHOT</version>
9     <relativePath>../commons/integrationtest</relativePath>
10   </parent>
11
12   <artifactId>integrationtest</artifactId>
13   <version>1.3.0-SNAPSHOT</version>
14   <name>OpenDaylight OVSDB Integration Tests</name>
15   <packaging>jar</packaging>
16
17   <dependencies>
18     <dependency>
19       <groupId>com.google.guava</groupId>
20       <artifactId>guava</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.yaml</groupId>
24       <artifactId>snakeyaml</artifactId>
25     </dependency>
26     <!-- Add Pax Exam -->
27     <dependency>
28       <groupId>org.ops4j.pax.exam</groupId>
29       <artifactId>pax-exam</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.ops4j.pax.exam</groupId>
33       <artifactId>pax-exam-container-native</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.ops4j.pax.exam</groupId>
37       <artifactId>pax-exam-junit4</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.ops4j.pax.exam</groupId>
41       <artifactId>pax-exam-link-mvn</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.ops4j.pax.url</groupId>
45       <artifactId>pax-url-aether</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.mockito</groupId>
49       <artifactId>mockito-all</artifactId>
50       <scope>test</scope>
51     </dependency>
52   </dependencies>
53   <build>
54     <pluginManagement>
55       <plugins>
56         <plugin>
57           <groupId>org.eclipse.m2e</groupId>
58           <artifactId>lifecycle-mapping</artifactId>
59           <version>${lifecycle.mapping.version}</version>
60           <configuration>
61             <lifecycleMappingMetadata>
62               <pluginExecutions>
63                 <pluginExecution>
64                   <pluginExecutionFilter>
65                     <groupId>org.apache.servicemix.tooling</groupId>
66                     <artifactId>depends-maven-plugin</artifactId>
67                     <versionRange>[0,)</versionRange>
68                     <goals>
69                       <goal>generate-depends-file</goal>
70                     </goals>
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         <version>1.2</version>
87         <executions>
88           <execution>
89             <id>generate-depends-file</id>
90             <goals>
91               <goal>generate-depends-file</goal>
92             </goals>
93           </execution>
94         </executions>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-checkstyle-plugin</artifactId>
99       </plugin>
100       <plugin>
101         <groupId>org.jacoco</groupId>
102         <artifactId>jacoco-maven-plugin</artifactId>
103       </plugin>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-failsafe-plugin</artifactId>
107         <version>${failsafe.version}</version>
108         <executions>
109           <execution>
110             <id>failsafe-integration-tests</id>
111             <phase>integration-test</phase>
112             <goals>
113               <goal>integration-test</goal>
114             </goals>
115             <configuration>
116               <forkCount>1</forkCount>
117               <reuseForks>false</reuseForks>
118               <parallel>none</parallel>
119               <threadCount>1</threadCount>
120               <excludes>
121               </excludes>
122             </configuration>
123           </execution>
124         </executions>
125       </plugin>
126     </plugins>
127   </build>
128   <scm>
129     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
130     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
131     <tag>HEAD</tag>
132     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
133   </scm>
134 </project>