8fcad060b72e818b355447ccf4140df8c17e889d
[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>configuration</artifactId>
68       <version>0.4.0-SNAPSHOT</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>configuration.implementation</artifactId>
73       <version>0.4.0-SNAPSHOT</version>
74     </dependency>
75       <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>hosttracker</artifactId>
78       <version>0.4.0-SNAPSHOT</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>topologymanager</artifactId>
83       <version>0.4.0-SNAPSHOT</version>
84     </dependency>
85   </dependencies>
86   <properties>
87     <!-- Sonar jacoco plugin to get integration test coverage info -->
88     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
89     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
90     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
91     <sonar.language>java</sonar.language>
92   </properties>
93   <build>
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         </plugin>
101       </plugins>
102     </pluginManagement>
103     <plugins>
104       <plugin>
105         <groupId>org.jacoco</groupId>
106         <artifactId>jacoco-maven-plugin</artifactId>
107         <version>0.5.3.201107060350</version>
108         <configuration>
109           <destFile>../implementation/target/jacoco-it.exec</destFile>
110           <includes>org.opendaylight.controller.*</includes>
111         </configuration>
112         <executions>
113           <execution>
114             <id>pre-test</id>
115             <goals>
116               <goal>prepare-agent</goal>
117             </goals>
118           </execution>
119           <execution>
120             <id>post-test</id>
121             <configuration>
122               <skip>true</skip>
123             </configuration>
124           </execution>
125         </executions>
126       </plugin>
127     </plugins>
128   </build>
129 </project>