Remove superfluous groupId.
[controller.git] / opendaylight / topologymanager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
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
12   <artifactId>topologymanager</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Export-Package>
26               org.opendaylight.controller.topologymanager
27             </Export-Package>
28             <Import-Package>
29           javax.xml.bind.annotation,
30               org.opendaylight.controller.sal.core,
31               org.opendaylight.controller.sal.utils,
32               org.opendaylight.controller.sal.packet,
33               org.opendaylight.controller.sal.topology,
34               org.opendaylight.controller.configuration,
35               org.opendaylight.controller.clustering.services,
36           org.osgi.service.component,
37               org.slf4j,
38           org.apache.felix.dm,
39           org.apache.commons.lang3.builder,
40           org.apache.commons.lang3.tuple,
41                   org.eclipse.osgi.framework.console,
42           org.osgi.framework
43             </Import-Package>
44         <Bundle-Activator>
45           org.opendaylight.controller.topologymanager.internal.Activator
46         </Bundle-Activator>
47           </instructions>
48         </configuration>
49       </plugin>
50     </plugins>
51   </build>
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal</artifactId>
56       <version>0.5.0-SNAPSHOT</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>clustering.services</artifactId>
61       <version>0.4.0-SNAPSHOT</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>configuration</artifactId>
66       <version>0.4.0-SNAPSHOT</version>
67     </dependency>
68     
69   </dependencies>
70 </project>