Merge "Fetch managed node (bridge) details and augment to operational data store"
[ovsdb.git] / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons.integrationtest</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../commons/integrationtest</relativePath>
19   </parent>
20
21   <artifactId>integrationtest</artifactId>
22   <version>1.3.0-SNAPSHOT</version>
23   <packaging>jar</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.yaml</groupId>
28       <artifactId>snakeyaml</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.mockito</groupId>
32       <artifactId>mockito-all</artifactId>
33       <scope>test</scope>
34     </dependency>
35   </dependencies>
36   <build>
37     <pluginManagement>
38       <plugins>
39         <plugin>
40           <groupId>org.eclipse.m2e</groupId>
41           <artifactId>lifecycle-mapping</artifactId>
42           <version>${lifecycle.mapping.version}</version>
43           <configuration>
44             <lifecycleMappingMetadata>
45               <pluginExecutions>
46                 <pluginExecution>
47                   <pluginExecutionFilter>
48                     <groupId>org.apache.servicemix.tooling</groupId>
49                     <artifactId>depends-maven-plugin</artifactId>
50                     <versionRange>[0,)</versionRange>
51                     <goals>
52                       <goal>generate-depends-file</goal>
53                     </goals>
54                   </pluginExecutionFilter>
55                   <action>
56                     <ignore/>
57                   </action>
58                 </pluginExecution>
59               </pluginExecutions>
60             </lifecycleMappingMetadata>
61           </configuration>
62         </plugin>
63       </plugins>
64     </pluginManagement>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.servicemix.tooling</groupId>
68         <artifactId>depends-maven-plugin</artifactId>
69         <version>1.2</version>
70         <executions>
71           <execution>
72             <id>generate-depends-file</id>
73             <goals>
74               <goal>generate-depends-file</goal>
75             </goals>
76           </execution>
77         </executions>
78       </plugin>
79       <plugin>
80         <groupId>org.apache.maven.plugins</groupId>
81         <artifactId>maven-checkstyle-plugin</artifactId>
82       </plugin>
83       <plugin>
84         <groupId>org.jacoco</groupId>
85         <artifactId>jacoco-maven-plugin</artifactId>
86       </plugin>
87       <plugin>
88         <groupId>org.apache.maven.plugins</groupId>
89         <artifactId>maven-failsafe-plugin</artifactId>
90         <version>${failsafe.version}</version>
91         <executions>
92           <execution>
93             <id>failsafe-integration-tests</id>
94             <phase>integration-test</phase>
95             <goals>
96               <goal>integration-test</goal>
97             </goals>
98             <configuration>
99               <forkCount>1</forkCount>
100               <reuseForks>false</reuseForks>
101               <parallel>none</parallel>
102               <threadCount>1</threadCount>
103               <excludes>
104                 <exclude>**/NetVirtIT.java</exclude>
105               </excludes>
106             </configuration>
107           </execution>
108         </executions>
109       </plugin>
110     </plugins>
111   </build>
112   <profiles>
113     <profile>
114       <id>default</id>
115       <activation>
116         <activeByDefault>true</activeByDefault>
117       </activation>
118       <dependencies>
119         <dependency>
120           <groupId>org.ops4j.pax.exam</groupId>
121           <artifactId>pax-exam-container-native</artifactId>
122         </dependency>
123         <dependency>
124           <groupId>org.ops4j.pax.exam</groupId>
125           <artifactId>pax-exam-container-karaf</artifactId>
126           <scope>compile</scope>
127         </dependency>
128       </dependencies>
129       <build>
130         <plugins>
131           <plugin>
132             <groupId>org.apache.maven.plugins</groupId>
133             <artifactId>maven-failsafe-plugin</artifactId>
134             <version>${failsafe.version}</version>
135             <configuration>
136             </configuration>
137             <executions>
138               <execution>
139                 <id>failsafe-integration-tests</id>
140                 <phase>integration-test</phase>
141                 <goals>
142                   <goal>integration-test</goal>
143                 </goals>
144                 <configuration>
145                   <classpathDependencyExcludes>
146                     <classpathDependencyExcludes>org.ops4j.pax.exam:pax-exam-container-karaf</classpathDependencyExcludes>
147                   </classpathDependencyExcludes>
148                 </configuration>
149               </execution>
150             </executions>
151           </plugin>
152         </plugins>
153       </build>
154     </profile>
155     <profile>
156       <id>karafit</id>
157       <activation>
158         <activeByDefault>false</activeByDefault>
159       </activation>
160       <dependencies>
161         <dependency>
162           <groupId>org.ops4j.pax.exam</groupId>
163           <artifactId>pax-exam-container-karaf</artifactId>
164         </dependency>
165       </dependencies>
166     </profile>
167   </profiles>
168   <scm>
169     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
170     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
171     <tag>HEAD</tag>
172     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
173   </scm>
174 </project>