72b0f90d213e09f454cadeaf361b8098072c611d
[controller.git] / opendaylight / hosttracker / 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.0</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>releasepom-0.1.0</tag>
15   </scm>
16
17   <artifactId>hosttracker.integrationtest</artifactId>
18   <version>0.4.0</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>hosttracker</artifactId>
24       <version>0.4.0</version>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>hosttracker.implementation</artifactId>
29       <version>0.4.0</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34       <version>0.5.0</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal.implementation</artifactId>
39       <version>0.4.0</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager</artifactId>
44       <version>0.5.0</version>
45     </dependency>
46
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>containermanager.it.implementation</artifactId>
50       <version>0.5.0</version>
51     </dependency>
52
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>arphandler</artifactId>
56       <version>0.4.0</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>clustering.services</artifactId>
61       <version>0.4.0</version>
62     </dependency>
63
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>clustering.stub</artifactId>
67       <version>0.4.0</version>
68     </dependency>
69
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>switchmanager</artifactId>
73       <version>0.5.0</version>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>switchmanager.implementation</artifactId>
78       <version>0.4.0</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>configuration</artifactId>
83       <version>0.4.0</version>
84     </dependency>
85
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>configuration.implementation</artifactId>
89       <version>0.4.0</version>
90     </dependency>
91
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>topologymanager</artifactId>
95       <version>0.4.0</version>
96     </dependency>
97   </dependencies>
98   <properties>
99     <!-- Sonar jacoco plugin to get integration test coverage info -->
100     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
101     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
102     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
103     <sonar.language>java</sonar.language>
104   </properties>
105
106   <build>
107     <pluginManagement>
108       <plugins>
109         <plugin>
110           <groupId>org.jacoco</groupId>
111           <artifactId>jacoco-maven-plugin</artifactId>
112           <version>0.5.3.201107060350</version>
113         </plugin>
114       </plugins>
115     </pluginManagement>
116     <plugins>
117       <plugin>
118         <groupId>org.jacoco</groupId>
119         <artifactId>jacoco-maven-plugin</artifactId>
120         <version>${jacoco.version}</version>
121         <configuration>
122           <destFile>../implementation/target/jacoco-it.exec</destFile>
123           <includes>org.opendaylight.controller.*</includes>
124         </configuration>
125         <executions>
126           <execution>
127             <id>pre-test</id>
128             <goals>
129               <goal>prepare-agent</goal>
130             </goals>
131           </execution>
132           <execution>
133             <id>post-test</id>
134             <configuration>
135               <skip>true</skip>
136             </configuration>
137           </execution>
138         </executions>
139       </plugin>
140     </plugins>
141   </build>
142 </project>