10b1a7243bdbe2f76cb81915a5014b3d1c025743
[controller.git] / opendaylight / topologymanager / 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.1-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15     <tag>HEAD</tag>
16   </scm>
17
18   <artifactId>topologymanager</artifactId>
19   <version>0.4.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>${bundle.plugin.version}</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Export-Package>
32               org.opendaylight.controller.topologymanager
33             </Export-Package>
34             <Import-Package>
35               javax.xml.bind.annotation,
36               org.opendaylight.controller.sal.core,
37               org.opendaylight.controller.sal.utils,
38               org.opendaylight.controller.sal.packet,
39               org.opendaylight.controller.sal.topology,
40               org.opendaylight.controller.configuration,
41               org.opendaylight.controller.clustering.services,
42               org.opendaylight.controller.switchmanager,
43               org.osgi.service.component,
44               org.slf4j,
45               org.apache.felix.dm,
46               org.apache.commons.lang3.builder,
47               org.apache.commons.lang3.tuple,
48               org.eclipse.osgi.framework.console,
49               org.osgi.framework
50             </Import-Package>
51             <Bundle-Activator>
52               org.opendaylight.controller.topologymanager.internal.Activator
53             </Bundle-Activator>
54           </instructions>
55           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <dependencies>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal</artifactId>
64       <version>0.7.0-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>clustering.services</artifactId>
69       <version>0.5.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>configuration</artifactId>
74       <version>0.4.1-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>switchmanager</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>junit</groupId>
82       <artifactId>junit</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>equinoxSDK381</groupId>
87       <artifactId>org.eclipse.osgi</artifactId>
88     </dependency>
89   </dependencies>
90 </project>