Merge "BUG-472: fix integration test breakage"
[controller.git] / opendaylight / topologymanager / 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   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.integrationtest</artifactId>
7     <version>0.5.2-SNAPSHOT</version>
8     <relativePath>../../commons/integrationtest</relativePath>
9   </parent>
10
11   <artifactId>topologymanager.integrationtest</artifactId>
12   <version>0.4.1-SNAPSHOT</version>
13   <properties>
14     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
15     <!-- Sonar jacoco plugin to get integration test coverage info -->
16     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
17   </properties>
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>clustering.services</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>clustering.stub</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>configuration</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>configuration.implementation</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>containermanager</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>containermanager.it.implementation</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>forwardingrulesmanager</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>hosttracker</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>protocol_plugins.stub</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal.implementation</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>statisticsmanager</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>statisticsmanager.implementation</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>switchmanager</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>switchmanager.implementation</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>topologymanager</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.ops4j.pax.exam</groupId>
85       <artifactId>pax-exam-container-native</artifactId>
86       <scope>test</scope>
87     </dependency>
88   </dependencies>
89   <build>
90     <plugins>
91       <plugin>
92         <groupId>org.jacoco</groupId>
93         <artifactId>jacoco-maven-plugin</artifactId>
94         <configuration>
95           <destFile>../implementation/target/jacoco-it.exec</destFile>
96           <includes>
97             <include>org.opendaylight.controller.*</include>
98           </includes>
99         </configuration>
100         <executions>
101           <execution>
102             <id>pre-test</id>
103             <goals>
104               <goal>prepare-agent</goal>
105             </goals>
106           </execution>
107           <execution>
108             <id>post-test</id>
109             <configuration>
110               <skip>true</skip>
111             </configuration>
112           </execution>
113         </executions>
114       </plugin>
115     </plugins>
116   </build>
117   <scm>
118     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
119     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
120     <tag>HEAD</tag>
121     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
122   </scm>
123 </project>