bdf00f4e0ac71cdf2a3d6d74c741e78e5cfbafa1
[controller.git] / opendaylight / switchmanager / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../../../opendaylight/commons/opendaylight</relativePath>
10   </parent>
11
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>switchmanager.integrationtest</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>switchmanager</artifactId>
20       <version>0.4.0-SNAPSHOT</version>
21     </dependency>
22       <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>switchmanager.implementation</artifactId>
25           <version>0.4.0-SNAPSHOT</version>
26     </dependency>
27      <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal</artifactId>
30       <version>0.5.0-SNAPSHOT</version>
31     </dependency>
32      <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal.implementation</artifactId>
35       <version>0.4.0-SNAPSHOT</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>containermanager</artifactId>
40       <version>0.4.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>containermanager.implementation</artifactId>
45       <version>0.4.0-SNAPSHOT</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>clustering.services</artifactId>
50       <version>0.4.0-SNAPSHOT</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>clustering.stub</artifactId>
55       <version>0.4.0-SNAPSHOT</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>configuration</artifactId>
60       <version>0.4.0-SNAPSHOT</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>configuration.implementation</artifactId>
65       <version>0.4.0-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>protocol_plugins.stub</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>
72   </dependencies>
73   <properties>
74     <!-- Sonar jacoco plugin to get integration test coverage info -->
75     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
76     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
77     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
78     <sonar.language>java</sonar.language>
79   </properties>
80
81   <build>
82     <pluginManagement>
83       <plugins>
84         <plugin>
85           <groupId>org.jacoco</groupId>
86           <artifactId>jacoco-maven-plugin</artifactId>
87           <version>0.5.3.201107060350</version>
88         </plugin>
89       </plugins>
90     </pluginManagement>
91     <plugins>
92       <plugin>
93         <groupId>org.jacoco</groupId>
94         <artifactId>jacoco-maven-plugin</artifactId>
95         <version>0.5.3.201107060350</version>
96         <configuration>
97           <destFile>../implementation/target/jacoco-it.exec</destFile>
98           <includes>org.opendaylight.controller.*</includes>
99         </configuration>
100         <executions>
101           <execution>
102             <id>pre-test</id>
103             <goals>
104               <goal>prepare-agent</goal>
105             </goals>
106           </execution>
107           <execution>
108             <id>post-test</id>
109             <configuration>
110               <skip>true</skip>
111             </configuration>
112           </execution>
113         </executions>
114       </plugin>
115     </plugins>
116   </build>
117
118 </project>