Merge "Bug 1029: Remove dead code: samples/clustersession"
[controller.git] / opendaylight / adsal / 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.6.0-SNAPSHOT</version>
8     <relativePath>../../commons/integrationtest</relativePath>
9   </parent>
10
11   <artifactId>switchmanager.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>junit</groupId>
30       <artifactId>junit</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>clustering.services</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>clustering.stub</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>configuration</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>configuration.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>hosttracker</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>hosttracker.implementation</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>protocol_plugins.stub</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal.implementation</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>switchmanager</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>switchmanager.implementation</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>topologymanager</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.slf4j</groupId>
90       <artifactId>log4j-over-slf4j</artifactId>
91     </dependency>
92     <!-- Add Pax Exam -->
93     <dependency>
94       <groupId>org.ops4j.pax.exam</groupId>
95       <artifactId>pax-exam-container-native</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.ops4j.pax.exam</groupId>
100       <artifactId>pax-exam-junit4</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.ops4j.pax.exam</groupId>
105       <artifactId>pax-exam-link-mvn</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.ops4j.pax.url</groupId>
110       <artifactId>pax-url-aether</artifactId>
111       <scope>test</scope>
112     </dependency>
113   </dependencies>
114
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.jacoco</groupId>
119         <artifactId>jacoco-maven-plugin</artifactId>
120         <configuration>
121           <destFile>../../implementation/target/jacoco-it.exec</destFile>
122           <includes>
123             <include>org.opendaylight.controller.*</include>
124           </includes>
125         </configuration>
126         <executions>
127           <execution>
128             <id>pre-test</id>
129             <goals>
130               <goal>prepare-agent</goal>
131             </goals>
132           </execution>
133           <execution>
134             <id>post-test</id>
135             <configuration>
136               <skip>true</skip>
137             </configuration>
138           </execution>
139         </executions>
140       </plugin>
141     </plugins>
142   </build>
143   <scm>
144     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
145     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
146     <tag>HEAD</tag>
147     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
148   </scm>
149
150 </project>