592a3dd071cf23b32758cc72a93367b3470edafc
[controller.git] / opendaylight / statisticsmanager / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>statisticsmanager.integrationtest</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>protocol_plugins.stub</artifactId>
19       <version>0.4.0-SNAPSHOT</version>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal</artifactId>
24       <version>0.4.0-SNAPSHOT</version>
25     </dependency>
26      <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal.implementation</artifactId>
29       <version>0.4.0-SNAPSHOT</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>containermanager</artifactId>
34       <version>0.4.0-SNAPSHOT</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>forwardingrulesmanager</artifactId>
39       <version>0.4.0-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>clustering.services</artifactId>
44       <version>0.4.0-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>statisticsmanager</artifactId>
49       <version>0.4.0-SNAPSHOT</version>
50     </dependency>
51   </dependencies>
52   <properties>
53     <!-- Sonar jacoco plugin to get integration test coverage info -->
54     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
55     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
56     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
57     <sonar.language>java</sonar.language>
58   </properties>
59   <build>
60     <pluginManagement>
61       <plugins>
62         <plugin>
63           <groupId>org.jacoco</groupId>
64           <artifactId>jacoco-maven-plugin</artifactId>
65           <version>0.5.3.201107060350</version>
66         </plugin>
67       </plugins>
68     </pluginManagement>
69     <plugins>
70       <plugin>
71         <groupId>org.jacoco</groupId>
72         <artifactId>jacoco-maven-plugin</artifactId>
73         <version>0.5.3.201107060350</version>
74         <configuration>
75           <destFile>../implementation/target/jacoco-it.exec</destFile>
76           <includes>org.opendaylight.controller.*</includes>
77         </configuration>
78         <executions>
79           <execution>
80             <id>pre-test</id>
81             <goals>
82               <goal>prepare-agent</goal>
83             </goals>
84           </execution>
85           <execution>
86             <id>post-test</id>
87             <configuration>
88               <skip>true</skip>
89             </configuration>
90           </execution>
91         </executions>
92       </plugin>
93     </plugins>
94   </build>
95 </project>