Unify jacoco versions to 0.6.2.201302030002
[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.2-SNAPSHOT</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>HEAD</tag>
15   </scm>
16
17   <artifactId>statisticsmanager.implementation</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20   <properties>
21     <!-- Sonar properties using jacoco to retrieve integration test results -->
22     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
23     <sonar.jacoco.reportpath>target/jacoco.exec</sonar.jacoco.reportpath>
24     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
25   </properties>
26   <build>
27     <pluginManagement>
28       <plugins>
29         <plugin>
30           <groupId>org.jacoco</groupId>
31           <artifactId>jacoco-maven-plugin</artifactId>
32           <version>${jacoco.version}</version>
33         </plugin>
34       </plugins>
35     </pluginManagement>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.felix</groupId>
39         <artifactId>maven-bundle-plugin</artifactId>
40         <version>${bundle.plugin.version}</version>
41         <extensions>true</extensions>
42         <configuration>
43           <instructions>
44             <Import-Package>
45               org.opendaylight.controller.clustering.services,
46               org.opendaylight.controller.sal.core,
47               org.opendaylight.controller.sal.flowprogrammer,
48               org.opendaylight.controller.sal.reader,
49               org.opendaylight.controller.sal.utils,
50               org.slf4j,
51               org.opendaylight.controller.sal.inventory,
52               org.opendaylight.controller.sal.match,
53               org.opendaylight.controller.sal.connection,
54               org.opendaylight.controller.switchmanager,
55               org.opendaylight.controller.statisticsmanager,
56               org.opendaylight.controller.forwardingrulesmanager,
57               org.opendaylight.controller.connectionmanager,
58               org.apache.felix.dm
59             </Import-Package>
60             <Bundle-Activator>
61               org.opendaylight.controller.statisticsmanager.internal.Activator
62             </Bundle-Activator>
63             <Export-Package>
64             </Export-Package>
65           </instructions>
66           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.jacoco</groupId>
71         <artifactId>jacoco-maven-plugin</artifactId>
72         <configuration>
73           <includes><include>org.opendaylight.controller.*</include></includes>
74         </configuration>
75         <executions>
76           <execution>
77             <id>pre-test</id>
78             <goals>
79               <goal>prepare-agent</goal>
80             </goals>
81           </execution>
82           <execution>
83             <id>post-test</id>
84             <phase>test</phase>
85             <goals>
86               <goal>report</goal>
87             </goals>
88           </execution>
89         </executions>
90       </plugin>
91     </plugins>
92   </build>
93   <dependencies>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>statisticsmanager</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller</groupId>
104       <artifactId>sal.connection</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.controller</groupId>
108       <artifactId>switchmanager</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.controller</groupId>
112       <artifactId>forwardingrulesmanager</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>clustering.services</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>connectionmanager</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>junit</groupId>
124       <artifactId>junit</artifactId>
125     </dependency>
126   </dependencies>
127 </project>