Merge "Bring some reliability in the eclipse and maven mixed builds"
[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
22       <dependency>
23         <groupId>com.google.guava</groupId>
24         <artifactId>guava</artifactId>
25       </dependency>
26       <dependency>
27           <groupId>org.opendaylight.controller</groupId>
28           <artifactId>sal-common-api</artifactId>
29           <version>1.0-SNAPSHOT</version>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>sal-common-util</artifactId>
34         <version>1.0-SNAPSHOT</version>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.controller</groupId>
38         <artifactId>sal-common-impl</artifactId>
39         <version>1.0-SNAPSHOT</version>
40       </dependency>
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>sal-binding-broker-impl</artifactId>
44         <version>1.0-SNAPSHOT</version>
45       </dependency>
46       <dependency>
47         <groupId>org.opendaylight.controller</groupId>
48         <artifactId>sal</artifactId>
49         <version>0.5.1-SNAPSHOT</version>
50       </dependency>
51       <dependency>
52         <groupId>org.opendaylight.controller</groupId>
53         <artifactId>clustering.services</artifactId>
54         <version>0.4.1-SNAPSHOT</version>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.yangtools</groupId>
58         <artifactId>yang-binding</artifactId>
59       </dependency>
60
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>protocol_plugins.stub</artifactId>
64       <version>0.4.1-SNAPSHOT</version>
65     </dependency>
66      <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal.implementation</artifactId>
69       <version>0.4.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>containermanager</artifactId>
74       <version>0.5.0-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>containermanager.it.implementation</artifactId>
79       <version>0.5.0-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>clustering.stub</artifactId>
84       <version>0.4.0-SNAPSHOT</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>clustered-datastore-implementation</artifactId>
89       <version>0.4.1-SNAPSHOT</version>
90     </dependency>
91
92       <dependency>
93           <groupId>org.opendaylight.controller</groupId>
94           <artifactId>sal-common</artifactId>
95           <version>1.0-SNAPSHOT</version>
96       </dependency>
97       <dependency>
98           <groupId>org.opendaylight.yangtools</groupId>
99           <artifactId>yang-common</artifactId>
100       </dependency>
101       <dependency>
102           <groupId>org.opendaylight.yangtools</groupId>
103           <artifactId>concepts</artifactId>
104           <version>0.1.1-SNAPSHOT</version>
105       </dependency>
106       <dependency>
107        <groupId>org.mockito</groupId>
108        <artifactId>mockito-all</artifactId>
109        <version>1.9.5</version>
110        <scope>test</scope>
111       </dependency>
112       <dependency>
113           <groupId>org.osgi</groupId>
114           <artifactId>org.osgi.core</artifactId>
115           <version>5.0.0</version>
116       </dependency>
117
118 </dependencies>
119   <properties>
120     <!-- Sonar jacoco plugin to get integration test coverage info -->
121     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
122     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
123   </properties>
124   <build>
125     <pluginManagement>
126       <plugins>
127         <plugin>
128           <groupId>org.jacoco</groupId>
129           <artifactId>jacoco-maven-plugin</artifactId>
130           <version>0.5.3.201107060350</version>
131         </plugin>
132       </plugins>
133     </pluginManagement>
134     <plugins>
135       <plugin>
136         <groupId>org.jacoco</groupId>
137         <artifactId>jacoco-maven-plugin</artifactId>
138         <version>0.5.3.201107060350</version>
139         <configuration>
140           <destFile>../implementation/target/jacoco-it.exec</destFile>
141           <includes>org.opendaylight.controller.*</includes>
142         </configuration>
143         <executions>
144           <execution>
145             <id>pre-test</id>
146             <goals>
147               <goal>prepare-agent</goal>
148             </goals>
149           </execution>
150           <execution>
151             <id>post-test</id>
152             <configuration>
153               <skip>true</skip>
154             </configuration>
155           </execution>
156         </executions>
157       </plugin>
158     </plugins>
159   </build>
160 </project>