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