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