Initial commit for the ClusteredDataStore
[controller.git] / opendaylight / md-sal / clustered-data-store / 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.integrationtest</artifactId>
9     <version>0.5.1-SNAPSHOT</version>
10     <relativePath>../../../commons/integrationtest</relativePath>
11   </parent>
12   <scm>
13     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16   </scm>
17
18   <artifactId>clustered-datastore.integrationtest</artifactId>
19   <version>0.4.0-SNAPSHOT</version>
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>protocol_plugins.stub</artifactId>
24       <version>0.4.1-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>containermanager</artifactId>
39       <version>0.5.0-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager.it.implementation</artifactId>
44       <version>0.5.0-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>clustering.services</artifactId>
49       <version>0.4.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>clustering.stub</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>clustered-datastore-implementation</artifactId>
59       <version>0.4.1-SNAPSHOT</version>
60     </dependency>
61
62   </dependencies>
63   <properties>
64     <!-- Sonar jacoco plugin to get integration test coverage info -->
65     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
66     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
67   </properties>
68   <build>
69     <pluginManagement>
70       <plugins>
71         <plugin>
72           <groupId>org.jacoco</groupId>
73           <artifactId>jacoco-maven-plugin</artifactId>
74           <version>0.5.3.201107060350</version>
75         </plugin>
76       </plugins>
77     </pluginManagement>
78     <plugins>
79       <plugin>
80         <groupId>org.jacoco</groupId>
81         <artifactId>jacoco-maven-plugin</artifactId>
82         <version>0.5.3.201107060350</version>
83         <configuration>
84           <destFile>../implementation/target/jacoco-it.exec</destFile>
85           <includes>org.opendaylight.controller.*</includes>
86         </configuration>
87         <executions>
88           <execution>
89             <id>pre-test</id>
90             <goals>
91               <goal>prepare-agent</goal>
92             </goals>
93           </execution>
94           <execution>
95             <id>post-test</id>
96             <configuration>
97               <skip>true</skip>
98             </configuration>
99           </execution>
100         </executions>
101       </plugin>
102     </plugins>
103   </build>
104 </project>