Merge "Added a generic API to return a list of configured switches that are not conne...
[controller.git] / opendaylight / switchmanager / 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>switchmanager.integrationtest</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>switchmanager</artifactId>
24       <version>0.7.0-SNAPSHOT</version>
25     </dependency>
26       <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>switchmanager.implementation</artifactId>
29       <version>0.4.1-SNAPSHOT</version>
30     </dependency>
31      <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34       <version>0.7.0-SNAPSHOT</version>
35     </dependency>
36      <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal.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>org.opendaylight.controller</groupId>
53       <artifactId>clustering.services</artifactId>
54       <version>0.5.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>clustering.stub</artifactId>
59       <version>0.4.1-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>configuration</artifactId>
64       <version>0.4.1-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>configuration.implementation</artifactId>
69       <version>0.4.1-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>protocol_plugins.stub</artifactId>
74       <version>0.4.1-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79     </dependency>
80     <!-- Add Pax Exam -->
81     <dependency>
82       <groupId>org.ops4j.pax.exam</groupId>
83       <artifactId>pax-exam-container-native</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.ops4j.pax.exam</groupId>
88       <artifactId>pax-exam-junit4</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.ops4j.pax.exam</groupId>
93       <artifactId>pax-exam-link-mvn</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.ops4j.pax.url</groupId>
98       <artifactId>pax-url-aether</artifactId>
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.slf4j</groupId>
103       <artifactId>log4j-over-slf4j</artifactId>
104     </dependency>
105     <dependency>
106        <groupId>ch.qos.logback</groupId>
107        <artifactId>logback-core</artifactId>
108      </dependency>
109      <dependency>
110        <groupId>ch.qos.logback</groupId>
111        <artifactId>logback-classic</artifactId>
112      </dependency>
113   </dependencies>
114   <properties>
115     <!-- Sonar jacoco plugin to get integration test coverage info -->
116     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
117     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
118   </properties>
119
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.jacoco</groupId>
124         <artifactId>jacoco-maven-plugin</artifactId>
125         <version>${jacoco.version}</version>
126         <configuration>
127           <destFile>../implementation/target/jacoco-it.exec</destFile>
128           <includes>org.opendaylight.controller.*</includes>
129         </configuration>
130         <executions>
131           <execution>
132             <id>pre-test</id>
133             <goals>
134               <goal>prepare-agent</goal>
135             </goals>
136           </execution>
137           <execution>
138             <id>post-test</id>
139             <configuration>
140               <skip>true</skip>
141             </configuration>
142           </execution>
143         </executions>
144       </plugin>
145     </plugins>
146   </build>
147
148 </project>