f88e213aa0517e5b4fa5fd45d61fc2e265796bb4
[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.1</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>master-tagforprepareonly-controller-bulk-release-2-1</tag>
15   </scm>
16
17   <artifactId>topologymanager.integrationtest</artifactId>
18   <version>0.4.0</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     <pluginManagement>
97       <plugins>
98         <plugin>
99           <groupId>org.jacoco</groupId>
100           <artifactId>jacoco-maven-plugin</artifactId>
101           <version>0.5.3.201107060350</version>
102         </plugin>
103       </plugins>
104     </pluginManagement>
105     <plugins>
106       <plugin>
107         <groupId>org.jacoco</groupId>
108         <artifactId>jacoco-maven-plugin</artifactId>
109         <version>0.5.3.201107060350</version>
110         <configuration>
111           <destFile>../implementation/target/jacoco-it.exec</destFile>
112           <includes>org.opendaylight.controller.*</includes>
113         </configuration>
114         <executions>
115           <execution>
116             <id>pre-test</id>
117             <goals>
118               <goal>prepare-agent</goal>
119             </goals>
120           </execution>
121           <execution>
122             <id>post-test</id>
123             <configuration>
124               <skip>true</skip>
125             </configuration>
126           </execution>
127         </executions>
128       </plugin>
129     </plugins>
130   </build>
131 </project>