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