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