Merge "Eliminate superfluous pluginManagement section"
[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.2-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.2-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>switchmanager</artifactId>
24     </dependency>
25       <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>switchmanager.implementation</artifactId>
28     </dependency>
29      <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal</artifactId>
32     </dependency>
33      <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal.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>org.opendaylight.controller</groupId>
47       <artifactId>clustering.services</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>clustering.stub</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>configuration</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>configuration.implementation</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>hosttracker</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>hosttracker.implementation</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>topologymanager</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>protocol_plugins.stub</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>junit</groupId>
79       <artifactId>junit</artifactId>
80     </dependency>
81     <!-- Add Pax Exam -->
82     <dependency>
83       <groupId>org.ops4j.pax.exam</groupId>
84       <artifactId>pax-exam-container-native</artifactId>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.ops4j.pax.exam</groupId>
89       <artifactId>pax-exam-junit4</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.ops4j.pax.exam</groupId>
94       <artifactId>pax-exam-link-mvn</artifactId>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.ops4j.pax.url</groupId>
99       <artifactId>pax-url-aether</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.slf4j</groupId>
104       <artifactId>log4j-over-slf4j</artifactId>
105     </dependency>
106     <dependency>
107        <groupId>ch.qos.logback</groupId>
108        <artifactId>logback-core</artifactId>
109      </dependency>
110      <dependency>
111        <groupId>ch.qos.logback</groupId>
112        <artifactId>logback-classic</artifactId>
113      </dependency>
114   </dependencies>
115   <properties>
116     <!-- Sonar jacoco plugin to get integration test coverage info -->
117     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
118     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
119   </properties>
120
121   <build>
122     <plugins>
123       <plugin>
124         <groupId>org.jacoco</groupId>
125         <artifactId>jacoco-maven-plugin</artifactId>
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>