fdc2efa5c207baf25b7bfe8ca90ae24ce53768c7
[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   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>statisticsmanager.implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <!-- Sonar properties using jacoco to retrieve integration test results -->
17     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
18     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
19     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
20     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
21     <sonar.language>java</sonar.language>
22   </properties>
23   <build>
24     <pluginManagement>
25       <plugins>
26         <plugin>
27           <groupId>org.jacoco</groupId>
28           <artifactId>jacoco-maven-plugin</artifactId>
29           <version>0.5.3.201107060350</version>
30         </plugin>
31       </plugins>
32     </pluginManagement>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37         <version>2.3.6</version>
38         <extensions>true</extensions>
39         <configuration>
40           <instructions>
41             <Import-Package>
42               org.opendaylight.controller.containermanager,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.flowprogrammer, org.slf4j,
45               org.opendaylight.controller.sal.reader,
46               org.opendaylight.controller.statisticsmanager,
47               org.opendaylight.controller.forwardingrulesmanager,
48               org.apache.felix.dm
49             </Import-Package>
50             <Bundle-Activator>
51               org.opendaylight.controller.statisticsmanager.internal.Activator
52             </Bundle-Activator>
53             <Export-Package>
54             </Export-Package>
55           </instructions>
56         </configuration>
57       </plugin>
58       <plugin>
59         <groupId>org.jacoco</groupId>
60         <artifactId>jacoco-maven-plugin</artifactId>
61         <configuration>
62           <includes>org.opendaylight.controller.*</includes>
63         </configuration>
64         <executions>
65           <execution>
66             <id>pre-test</id>
67             <goals>
68               <goal>prepare-agent</goal>
69             </goals>
70           </execution>
71           <execution>
72             <id>post-test</id>
73             <phase>test</phase>
74             <goals>
75               <goal>report</goal>
76             </goals>
77           </execution>
78         </executions>
79       </plugin>
80     </plugins>
81   </build>
82   <dependencies>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>statisticsmanager</artifactId>
86       <version>0.4.0-SNAPSHOT</version>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal</artifactId>
91       <version>0.5.0-SNAPSHOT</version>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>containermanager</artifactId>
96       <version>0.4.0-SNAPSHOT</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>forwardingrulesmanager</artifactId>
101       <version>0.4.0-SNAPSHOT</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller</groupId>
105       <artifactId>clustering.services</artifactId>
106       <version>0.4.0-SNAPSHOT</version>
107     </dependency>
108   </dependencies>
109 </project>