Merge "On container removal FRM does not uninstall flows"
[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   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15   </scm>
16
17   <artifactId>switchmanager.integrationtest</artifactId>
18   <version>0.4.0-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>switchmanager</artifactId>
24       <version>0.5.0-SNAPSHOT</version>
25     </dependency>
26       <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>switchmanager.implementation</artifactId>
29       <version>0.4.0-SNAPSHOT</version>
30     </dependency>
31      <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34       <version>0.5.0-SNAPSHOT</version>
35     </dependency>
36      <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal.implementation</artifactId>
39       <version>0.4.0-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager</artifactId>
44       <version>0.5.0-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>containermanager.it.implementation</artifactId>
49       <version>0.5.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>clustering.services</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>clustering.stub</artifactId>
59       <version>0.4.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>configuration</artifactId>
64       <version>0.4.0-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>configuration.implementation</artifactId>
69       <version>0.4.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>protocol_plugins.stub</artifactId>
74       <version>0.4.0-SNAPSHOT</version>
75     </dependency>
76   </dependencies>
77   <properties>
78     <!-- Sonar jacoco plugin to get integration test coverage info -->
79     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
80     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
81     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
82     <sonar.language>java</sonar.language>
83   </properties>
84
85   <build>
86     <pluginManagement>
87       <plugins>
88         <plugin>
89           <groupId>org.jacoco</groupId>
90           <artifactId>jacoco-maven-plugin</artifactId>
91           <version>0.5.3.201107060350</version>
92         </plugin>
93       </plugins>
94     </pluginManagement>
95     <plugins>
96       <plugin>
97         <groupId>org.jacoco</groupId>
98         <artifactId>jacoco-maven-plugin</artifactId>
99         <version>0.5.3.201107060350</version>
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
122 </project>