Merge "Fixed validation bug of YANG import statement"
[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.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>statisticsmanager.integrationtest</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>protocol_plugins.stub</artifactId>
19       <version>0.4.0-SNAPSHOT</version>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal</artifactId>
24       <version>0.4.0-SNAPSHOT</version>
25     </dependency>
26      <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal.implementation</artifactId>
29       <version>0.4.0-SNAPSHOT</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>containermanager</artifactId>
34       <version>0.4.0-SNAPSHOT</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>containermanager.implementation</artifactId>
39       <version>0.4.0-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>forwardingrulesmanager</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>statisticsmanager</artifactId>
59       <version>0.4.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>statisticsmanager.implementation</artifactId>
64       <version>0.4.0-SNAPSHOT</version>
65     </dependency>
66       <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>configuration</artifactId>
69       <version>0.4.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>configuration.implementation</artifactId>
74       <version>0.4.0-SNAPSHOT</version>
75     </dependency>
76       <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>hosttracker</artifactId>
79       <version>0.4.0-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>topologymanager</artifactId>
84       <version>0.4.0-SNAPSHOT</version>
85     </dependency>
86   </dependencies>
87   <properties>
88     <!-- Sonar jacoco plugin to get integration test coverage info -->
89     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
90     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
91     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
92     <sonar.language>java</sonar.language>
93   </properties>
94   <build>
95     <pluginManagement>
96       <plugins>
97         <plugin>
98           <groupId>org.jacoco</groupId>
99           <artifactId>jacoco-maven-plugin</artifactId>
100           <version>0.5.3.201107060350</version>
101         </plugin>
102       </plugins>
103     </pluginManagement>
104     <plugins>
105       <plugin>
106         <groupId>org.jacoco</groupId>
107         <artifactId>jacoco-maven-plugin</artifactId>
108         <version>0.5.3.201107060350</version>
109         <configuration>
110           <destFile>../implementation/target/jacoco-it.exec</destFile>
111           <includes>org.opendaylight.controller.*</includes>
112         </configuration>
113         <executions>
114           <execution>
115             <id>pre-test</id>
116             <goals>
117               <goal>prepare-agent</goal>
118             </goals>
119           </execution>
120           <execution>
121             <id>post-test</id>
122             <configuration>
123               <skip>true</skip>
124             </configuration>
125           </execution>
126         </executions>
127       </plugin>
128     </plugins>
129   </build>
130 </project>