Merge "Enable checkstyle for other non-source files"
[controller.git] / opendaylight / clustering / 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.0-SNAPSHOT</version>
8     <relativePath>../../commons/integrationtest</relativePath>
9   </parent>
10
11   <artifactId>clustering.services.integrationtest</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.infinispan</groupId>
17       <artifactId>infinispan-core</artifactId>
18       <version>5.2.3.Final</version>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>clustering.services</artifactId>
23       <version>0.4.0-SNAPSHOT</version>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal</artifactId>
28       <version>0.5.0-SNAPSHOT</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal.implementation</artifactId>
33       <version>0.4.0-SNAPSHOT</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>clustering.services-implementation</artifactId>
38       <version>0.4.0-SNAPSHOT</version>
39     </dependency>
40   </dependencies>
41   <properties>
42     <!-- Sonar jacoco plugin to get integration test coverage info -->
43     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
44     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
45     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
46     <sonar.language>java</sonar.language>
47   </properties>
48   <build>
49     <pluginManagement>
50       <plugins>
51         <plugin>
52           <groupId>org.jacoco</groupId>
53           <artifactId>jacoco-maven-plugin</artifactId>
54           <version>0.5.3.201107060350</version>
55         </plugin>
56       </plugins>
57     </pluginManagement>
58     <plugins>
59       <plugin>
60         <groupId>org.jacoco</groupId>
61         <artifactId>jacoco-maven-plugin</artifactId>
62         <version>0.5.3.201107060350</version>
63         <configuration>
64           <destFile>../implementation/target/jacoco-it.exec</destFile>
65           <includes>org.opendaylight.controller.*</includes>
66         </configuration>
67         <executions>
68           <execution>
69             <id>pre-test</id>
70             <goals>
71               <goal>prepare-agent</goal>
72             </goals>
73           </execution>
74           <execution>
75             <id>post-test</id>
76             <configuration>
77               <skip>true</skip>
78             </configuration>
79           </execution>
80         </executions>
81       </plugin>
82     </plugins>
83   </build>
84 </project>