Eliminate superfluous pluginManagement section
[controller.git] / opendaylight / topologymanager / 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>topologymanager.integrationtest</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19   <dependencies>
20     <dependency>
21       <groupId>org.ops4j.pax.exam</groupId>
22       <artifactId>pax-exam-container-native</artifactId>
23       <scope>test</scope>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>protocol_plugins.stub</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>forwardingrulesmanager</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>clustering.services</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>clustering.stub</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>statisticsmanager</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>statisticsmanager.implementation</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>switchmanager</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>configuration</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>configuration.implementation</artifactId>
80     </dependency>
81       <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>hosttracker</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>topologymanager</artifactId>
88     </dependency>
89   </dependencies>
90   <properties>
91     <!-- Sonar jacoco plugin to get integration test coverage info -->
92     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
93     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
94   </properties>
95   <build>
96     <plugins>
97       <plugin>
98         <groupId>org.jacoco</groupId>
99         <artifactId>jacoco-maven-plugin</artifactId>
100         <configuration>
101           <destFile>../implementation/target/jacoco-it.exec</destFile>
102           <includes>org.opendaylight.controller.*</includes>
103         </configuration>
104         <executions>
105           <execution>
106             <id>pre-test</id>
107             <goals>
108               <goal>prepare-agent</goal>
109             </goals>
110           </execution>
111           <execution>
112             <id>post-test</id>
113             <configuration>
114               <skip>true</skip>
115             </configuration>
116           </execution>
117         </executions>
118       </plugin>
119     </plugins>
120   </build>
121 </project>