769749302651e7841322ff4eca29829e38860a23
[controller.git] / opendaylight / statisticsmanager / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11   <artifactId>statisticsmanager.implementation</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <properties>
15     <!-- Sonar properties using jacoco to retrieve integration test results -->
16     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
17     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
18     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
19     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
20     <sonar.language>java</sonar.language>
21   </properties>
22   <build>
23     <pluginManagement>
24       <plugins>
25         <plugin>
26           <groupId>org.jacoco</groupId>
27           <artifactId>jacoco-maven-plugin</artifactId>
28           <version>0.5.3.201107060350</version>
29         </plugin>
30       </plugins>
31     </pluginManagement>
32     <plugins>
33       <plugin>
34         <groupId>org.apache.felix</groupId>
35         <artifactId>maven-bundle-plugin</artifactId>
36         <version>2.3.6</version>
37         <extensions>true</extensions>
38         <configuration>
39           <instructions>
40             <Import-Package>
41               org.opendaylight.controller.clustering.services,
42               org.opendaylight.controller.containermanager,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.flowprogrammer,
45               org.opendaylight.controller.sal.reader,
46               org.opendaylight.controller.sal.utils,
47               org.slf4j,
48               org.opendaylight.controller.sal.inventory,
49               org.opendaylight.controller.sal.match,
50               org.opendaylight.controller.switchmanager,
51               org.opendaylight.controller.statisticsmanager,
52               org.opendaylight.controller.forwardingrulesmanager,
53               org.apache.felix.dm
54             </Import-Package>
55             <Bundle-Activator>
56               org.opendaylight.controller.statisticsmanager.internal.Activator
57             </Bundle-Activator>
58             <Export-Package>
59             </Export-Package>
60           </instructions>
61           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64       <plugin>
65         <groupId>org.jacoco</groupId>
66         <artifactId>jacoco-maven-plugin</artifactId>
67         <configuration>
68           <includes>org.opendaylight.controller.*</includes>
69         </configuration>
70         <executions>
71           <execution>
72             <id>pre-test</id>
73             <goals>
74               <goal>prepare-agent</goal>
75             </goals>
76           </execution>
77           <execution>
78             <id>post-test</id>
79             <phase>test</phase>
80             <goals>
81               <goal>report</goal>
82             </goals>
83           </execution>
84         </executions>
85       </plugin>
86     </plugins>
87   </build>
88   <dependencies>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>statisticsmanager</artifactId>
92       <version>0.4.0-SNAPSHOT</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>sal</artifactId>
97       <version>0.5.0-SNAPSHOT</version>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>containermanager</artifactId>
102       <version>0.4.0-SNAPSHOT</version>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>forwardingrulesmanager</artifactId>
107       <version>0.4.0-SNAPSHOT</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>clustering.services</artifactId>
112       <version>0.4.0-SNAPSHOT</version>
113     </dependency>
114   </dependencies>
115 </project>