Merge "Fix bug in hello message: module with more revisions."
[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.1-SNAPSHOT</version>
8     <relativePath>../../commons/integrationtest</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>clustering.services.integrationtest</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>clustering.services</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal.implementation</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>clustering.services-implementation</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>containermanager</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager.it.implementation</artifactId>
44     </dependency>
45         <dependency>
46       <groupId>junit</groupId>
47       <artifactId>junit</artifactId>
48     </dependency>
49     <dependency>
50        <groupId>org.ops4j.pax.exam</groupId>
51        <artifactId>pax-exam-container-native</artifactId>
52        <scope>test</scope>
53      </dependency>
54      <dependency>
55        <groupId>org.ops4j.pax.exam</groupId>
56        <artifactId>pax-exam-junit4</artifactId>
57        <scope>test</scope>
58      </dependency>
59      <dependency>
60         <groupId>org.ops4j.pax.exam</groupId>
61         <artifactId>pax-exam-link-mvn</artifactId>
62         <scope>test</scope>
63       </dependency>
64       <dependency>
65         <groupId>org.ops4j.pax.url</groupId>
66         <artifactId>pax-url-aether</artifactId>
67         <scope>test</scope>
68       </dependency>
69       <dependency>
70         <groupId>org.slf4j</groupId>
71         <artifactId>log4j-over-slf4j</artifactId>
72       </dependency>
73       <dependency>
74         <groupId>ch.qos.logback</groupId>
75         <artifactId>logback-core</artifactId>
76       </dependency>
77       <dependency>
78         <groupId>ch.qos.logback</groupId>
79         <artifactId>logback-classic</artifactId>
80       </dependency>
81       <dependency>
82         <groupId>org.apache.felix</groupId>
83         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
84       </dependency>
85       <dependency>
86         <groupId>eclipselink</groupId>
87         <artifactId>javax.resource</artifactId>
88       </dependency>
89   </dependencies>
90   <properties>
91     <!-- Sonar jacoco plugin to get integration test coverage info -->
92     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
93     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
94   </properties>
95   <build>
96     <pluginManagement>
97       <plugins>
98         <plugin>
99           <groupId>org.jacoco</groupId>
100           <artifactId>jacoco-maven-plugin</artifactId>
101           <version>0.5.3.201107060350</version>
102         </plugin>
103       </plugins>
104     </pluginManagement>
105     <plugins>
106       <plugin>
107         <groupId>org.jacoco</groupId>
108         <artifactId>jacoco-maven-plugin</artifactId>
109         <version>${jacoco.version}</version>
110         <configuration>
111           <destFile>../implementation/target/jacoco-it.exec</destFile>
112           <includes>org.opendaylight.controller.*</includes>
113         </configuration>
114         <executions>
115           <execution>
116             <id>pre-test</id>
117             <goals>
118               <goal>prepare-agent</goal>
119             </goals>
120           </execution>
121           <execution>
122             <id>post-test</id>
123             <configuration>
124               <skip>true</skip>
125             </configuration>
126           </execution>
127         </executions>
128       </plugin>
129     </plugins>
130   </build>
131 </project>