Remove superfluous groupId.
[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.containermanager,
42               org.opendaylight.controller.sal.core,
43               org.opendaylight.controller.sal.flowprogrammer, org.slf4j,
44               org.opendaylight.controller.sal.reader,
45               org.opendaylight.controller.statisticsmanager,
46               org.opendaylight.controller.forwardingrulesmanager,
47               org.apache.felix.dm
48             </Import-Package>
49             <Bundle-Activator>
50               org.opendaylight.controller.statisticsmanager.internal.Activator
51             </Bundle-Activator>
52             <Export-Package>
53             </Export-Package>
54           </instructions>
55         </configuration>
56       </plugin>
57       <plugin>
58         <groupId>org.jacoco</groupId>
59         <artifactId>jacoco-maven-plugin</artifactId>
60         <configuration>
61           <includes>org.opendaylight.controller.*</includes>
62         </configuration>
63         <executions>
64           <execution>
65             <id>pre-test</id>
66             <goals>
67               <goal>prepare-agent</goal>
68             </goals>
69           </execution>
70           <execution>
71             <id>post-test</id>
72             <phase>test</phase>
73             <goals>
74               <goal>report</goal>
75             </goals>
76           </execution>
77         </executions>
78       </plugin>
79     </plugins>
80   </build>
81   <dependencies>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>statisticsmanager</artifactId>
85       <version>0.4.0-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>sal</artifactId>
90       <version>0.5.0-SNAPSHOT</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>containermanager</artifactId>
95       <version>0.4.0-SNAPSHOT</version>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>forwardingrulesmanager</artifactId>
100       <version>0.4.0-SNAPSHOT</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller</groupId>
104       <artifactId>clustering.services</artifactId>
105       <version>0.4.0-SNAPSHOT</version>
106     </dependency>
107   </dependencies>
108 </project>