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