OpenDaylight Controller functional modules.
[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   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>topologymanager</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>2.3.6</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Export-Package>
27               org.opendaylight.controller.topologymanager
28             </Export-Package>
29             <Import-Package>
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.tuple,
40                   org.eclipse.osgi.framework.console,
41           org.osgi.framework
42             </Import-Package>
43         <Bundle-Activator>
44           org.opendaylight.controller.topologymanager.internal.Activator
45         </Bundle-Activator>
46           </instructions>
47         </configuration>
48       </plugin>
49     </plugins>
50   </build>
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal</artifactId>
55       <version>0.4.0-SNAPSHOT</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>clustering.services</artifactId>
60       <version>0.4.0-SNAPSHOT</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>configuration</artifactId>
65       <version>0.4.0-SNAPSHOT</version>
66     </dependency>
67     
68   </dependencies>
69 </project>