Merge "BUG-472: fix integration test breakage"
[controller.git] / opendaylight / statisticsmanager / 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>statisticsmanager.integrationtest</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <properties>
14     <sonar.jacoco.itReportPath>../implementation/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>ch.qos.logback</groupId>
21       <artifactId>logback-classic</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>ch.qos.logback</groupId>
25       <artifactId>logback-core</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>junit</groupId>
29       <artifactId>junit</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>clustering.services</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>clustering.stub</artifactId>
38     </dependency>
39
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>configuration</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>configuration.implementation</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>connectionmanager</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>connectionmanager.implementation</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>containermanager</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>containermanager.it.implementation</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>forwardingrulesmanager</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>hosttracker</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>protocol_plugins.stub</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal.connection</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal.connection.implementation</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal.implementation</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>statisticsmanager</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>statisticsmanager.implementation</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>switchmanager</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>switchmanager.implementation</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>topologymanager</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.slf4j</groupId>
114       <artifactId>log4j-over-slf4j</artifactId>
115     </dependency>
116     <!-- Add Pax Exam -->
117     <dependency>
118       <groupId>org.ops4j.pax.exam</groupId>
119       <artifactId>pax-exam-container-native</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.ops4j.pax.exam</groupId>
124       <artifactId>pax-exam-junit4</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.ops4j.pax.exam</groupId>
129       <artifactId>pax-exam-link-mvn</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.ops4j.pax.url</groupId>
134       <artifactId>pax-url-aether</artifactId>
135       <scope>test</scope>
136     </dependency>
137   </dependencies>
138   <build>
139     <plugins>
140       <plugin>
141         <groupId>org.jacoco</groupId>
142         <artifactId>jacoco-maven-plugin</artifactId>
143         <configuration>
144           <destFile>../implementation/target/jacoco-it.exec</destFile>
145           <includes>
146             <include>org.opendaylight.controller.*</include>
147           </includes>
148         </configuration>
149         <executions>
150           <execution>
151             <id>pre-test</id>
152             <goals>
153               <goal>prepare-agent</goal>
154             </goals>
155           </execution>
156           <execution>
157             <id>post-test</id>
158             <configuration>
159               <skip>true</skip>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164     </plugins>
165   </build>
166   <scm>
167     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
168     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
169     <tag>HEAD</tag>
170     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
171   </scm>
172 </project>