Remove superfluous groupId.
[controller.git] / opendaylight / forwardingrulesmanager / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12
13   <artifactId>forwardingrulesmanager.implementation</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <properties>
18     <!-- Sonar properties using jacoco to retrieve integration test results -->
19     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
20     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
21     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
22     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
23     <sonar.language>java</sonar.language>
24   </properties>
25   <build>
26     <pluginManagement>
27       <plugins>
28         <plugin>
29           <groupId>org.jacoco</groupId>
30           <artifactId>jacoco-maven-plugin</artifactId>
31           <version>0.5.3.201107060350</version>
32         </plugin>
33       </plugins>
34     </pluginManagement>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <version>2.3.6</version>
40         <extensions>true</extensions>
41         <configuration>
42           <instructions>
43             <Include-Resource>
44             </Include-Resource>
45             <Export-Package>
46             </Export-Package>
47             <Import-Package>
48               org.opendaylight.controller.clustering.services,
49               org.opendaylight.controller.configuration,
50               org.opendaylight.controller.hosttracker,
51               org.opendaylight.controller.hosttracker.hostAware,
52               org.opendaylight.controller.switchmanager,
53               org.opendaylight.controller.sal.action,
54               org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.flowprogrammer,
56               org.opendaylight.controller.sal.match,
57               org.opendaylight.controller.sal.utils,
58               org.opendaylight.controller.sal.packet,
59               org.opendaylight.controller.forwardingrulesmanager,
60               javax.xml.bind.annotation,
61               javax.xml.bind,
62               org.apache.felix.dm,
63               org.apache.commons.lang3.builder,
64               org.osgi.service.component,
65               org.slf4j,
66               org.eclipse.osgi.framework.console,
67               org.osgi.framework
68             </Import-Package>
69             <Bundle-Activator>
70               org.opendaylight.controller.forwardingrulesmanager.internal.Activator
71             </Bundle-Activator>
72             <Require-Bundle>
73               org.opendaylight.controller.hosttracker
74             </Require-Bundle>
75             <Service-Component>
76             </Service-Component>
77           </instructions>
78         </configuration>
79       </plugin>
80       <plugin>
81         <groupId>org.jacoco</groupId>
82         <artifactId>jacoco-maven-plugin</artifactId>
83         <configuration>
84           <includes>org.opendaylight.controller.*</includes>
85         </configuration>
86         <executions>
87           <execution>
88             <id>pre-test</id>
89             <goals>
90               <goal>prepare-agent</goal>
91             </goals>
92           </execution>
93           <execution>
94             <id>post-test</id>
95             <phase>test</phase>
96             <goals>
97               <goal>report</goal>
98             </goals>
99           </execution>
100         </executions>
101       </plugin>
102     </plugins>
103   </build>
104   <dependencies>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>hosttracker</artifactId>
108       <version>0.4.0-SNAPSHOT</version>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.controller</groupId>
112       <artifactId>configuration</artifactId>
113       <version>0.4.0-SNAPSHOT</version>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.controller</groupId>
117       <artifactId>clustering.services</artifactId>
118       <version>0.4.0-SNAPSHOT</version>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>switchmanager</artifactId>
123       <version>0.4.0-SNAPSHOT</version>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.controller</groupId>
127       <artifactId>sal</artifactId>
128       <version>0.5.0-SNAPSHOT</version>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.controller</groupId>
132       <artifactId>forwardingrulesmanager</artifactId>
133       <version>0.4.0-SNAPSHOT</version>
134     </dependency>
135     <dependency>
136       <groupId>junit</groupId>
137       <artifactId>junit</artifactId>
138       <version>4.8.1</version>
139       <scope>test</scope>
140     </dependency>
141   </dependencies>
142 </project>