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