Eliminate superfluous pluginManagement section
[controller.git] / opendaylight / forwardingrulesmanager / 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>forwardingrulesmanager.integrationtest</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>hosttracker</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>hosttracker.implementation</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>connectionmanager</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>connectionmanager.implementation</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>configuration</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal.connection</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal.connection.implementation</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>configuration.implementation</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>clustering.services</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>clustering.stub</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>switchmanager</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>switchmanager.implementation</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal.implementation</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>forwardingrulesmanager</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>forwardingrulesmanager.implementation</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>containermanager</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>containermanager.it.implementation</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>protocol_plugins.stub</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>topologymanager</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>junit</groupId>
103       <artifactId>junit</artifactId>
104     </dependency>
105     <!-- Add Pax Exam -->
106     <dependency>
107       <groupId>org.ops4j.pax.exam</groupId>
108       <artifactId>pax-exam-container-native</artifactId>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.ops4j.pax.exam</groupId>
113       <artifactId>pax-exam-junit4</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.ops4j.pax.exam</groupId>
118       <artifactId>pax-exam-link-mvn</artifactId>
119       <scope>test</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.ops4j.pax.url</groupId>
123       <artifactId>pax-url-aether</artifactId>
124       <scope>test</scope>
125     </dependency>
126     <dependency>
127       <groupId>org.slf4j</groupId>
128       <artifactId>log4j-over-slf4j</artifactId>
129     </dependency>
130     <dependency>
131        <groupId>ch.qos.logback</groupId>
132        <artifactId>logback-core</artifactId>
133      </dependency>
134      <dependency>
135        <groupId>ch.qos.logback</groupId>
136        <artifactId>logback-classic</artifactId>
137      </dependency>
138   </dependencies>
139   <properties>
140     <!-- Sonar jacoco plugin to get integration test coverage info -->
141     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
142     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
143   </properties>
144   <build>
145     <plugins>
146       <plugin>
147         <groupId>org.jacoco</groupId>
148         <artifactId>jacoco-maven-plugin</artifactId>
149         <configuration>
150           <destFile>../implementation/target/jacoco-it.exec</destFile>
151           <includes>org.opendaylight.controller.*</includes>
152         </configuration>
153         <executions>
154           <execution>
155             <id>pre-test</id>
156             <goals>
157               <goal>prepare-agent</goal>
158             </goals>
159           </execution>
160           <execution>
161             <id>post-test</id>
162             <configuration>
163               <skip>true</skip>
164             </configuration>
165           </execution>
166         </executions>
167       </plugin>
168     </plugins>
169   </build>
170 </project>