Prepare for mvn release:prepare release:perform operation
[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   <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   </scm>
16
17   <artifactId>topologymanager</artifactId>
18   <version>0.4.0-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>2.3.6</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>
31               org.opendaylight.controller.topologymanager
32             </Export-Package>
33             <Import-Package>
34               javax.xml.bind.annotation,
35               org.opendaylight.controller.sal.core,
36               org.opendaylight.controller.sal.utils,
37               org.opendaylight.controller.sal.packet,
38               org.opendaylight.controller.sal.topology,
39               org.opendaylight.controller.configuration,
40               org.opendaylight.controller.clustering.services,
41               org.osgi.service.component,
42               org.slf4j,
43               org.apache.felix.dm,
44               org.apache.commons.lang3.builder,
45               org.apache.commons.lang3.tuple,
46               org.eclipse.osgi.framework.console,
47               org.osgi.framework
48             </Import-Package>
49             <Bundle-Activator>
50               org.opendaylight.controller.topologymanager.internal.Activator
51             </Bundle-Activator>
52           </instructions>
53           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58   <dependencies>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal</artifactId>
62       <version>0.5.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>clustering.services</artifactId>
67       <version>0.4.0-SNAPSHOT</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>configuration</artifactId>
72       <version>0.4.0-SNAPSHOT</version>
73     </dependency>
74   </dependencies>
75 </project>