Merge "Added a generic API to return a list of configured switches that are not conne...
[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       <version>0.5.0-SNAPSHOT</version>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal</artifactId>
29       <version>0.7.0-SNAPSHOT</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal.implementation</artifactId>
34       <version>0.4.1-SNAPSHOT</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>clustering.services-implementation</artifactId>
39       <version>0.4.1-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager</artifactId>
44       <version>0.5.1-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>containermanager.it.implementation</artifactId>
49       <version>0.5.1-SNAPSHOT</version>
50     </dependency>
51         <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54     </dependency>
55     <dependency>
56        <groupId>org.ops4j.pax.exam</groupId>
57        <artifactId>pax-exam-container-native</artifactId>
58        <scope>test</scope>
59      </dependency>
60      <dependency>
61        <groupId>org.ops4j.pax.exam</groupId>
62        <artifactId>pax-exam-junit4</artifactId>
63        <scope>test</scope>
64      </dependency>
65      <dependency>
66         <groupId>org.ops4j.pax.exam</groupId>
67         <artifactId>pax-exam-link-mvn</artifactId>
68         <scope>test</scope>
69       </dependency>
70       <dependency>
71         <groupId>org.ops4j.pax.url</groupId>
72         <artifactId>pax-url-aether</artifactId>
73         <scope>test</scope>
74       </dependency>
75       <dependency>
76         <groupId>org.slf4j</groupId>
77         <artifactId>log4j-over-slf4j</artifactId>
78       </dependency>
79       <dependency>
80         <groupId>ch.qos.logback</groupId>
81         <artifactId>logback-core</artifactId>
82       </dependency>
83       <dependency>
84         <groupId>ch.qos.logback</groupId>
85         <artifactId>logback-classic</artifactId>
86       </dependency>
87       <dependency>
88         <groupId>org.apache.felix</groupId>
89         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
90       </dependency>
91       <dependency>
92         <groupId>eclipselink</groupId>
93         <artifactId>javax.resource</artifactId>
94       </dependency>
95   </dependencies>
96   <properties>
97     <!-- Sonar jacoco plugin to get integration test coverage info -->
98     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
99     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
100   </properties>
101   <build>
102     <pluginManagement>
103       <plugins>
104         <plugin>
105           <groupId>org.jacoco</groupId>
106           <artifactId>jacoco-maven-plugin</artifactId>
107           <version>0.5.3.201107060350</version>
108         </plugin>
109       </plugins>
110     </pluginManagement>
111     <plugins>
112       <plugin>
113         <groupId>org.jacoco</groupId>
114         <artifactId>jacoco-maven-plugin</artifactId>
115         <version>${jacoco.version}</version>
116         <configuration>
117           <destFile>../implementation/target/jacoco-it.exec</destFile>
118           <includes>org.opendaylight.controller.*</includes>
119         </configuration>
120         <executions>
121           <execution>
122             <id>pre-test</id>
123             <goals>
124               <goal>prepare-agent</goal>
125             </goals>
126           </execution>
127           <execution>
128             <id>post-test</id>
129             <configuration>
130               <skip>true</skip>
131             </configuration>
132           </execution>
133         </executions>
134       </plugin>
135     </plugins>
136   </build>
137 </project>