Merge "BUG702: RPC Router fails to acquire IP address of the host"
[controller.git] / opendaylight / forwardingrulesmanager / api / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>forwardingrulesmanager</artifactId>
18   <version>0.6.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>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Include-Resource>
31             </Include-Resource>
32             <Export-Package>
33               org.opendaylight.controller.forwardingrulesmanager
34             </Export-Package>
35             <Import-Package>
36               org.opendaylight.controller.configuration,
37               org.opendaylight.controller.switchmanager,
38               org.opendaylight.controller.sal.action,
39               org.opendaylight.controller.sal.core,
40               org.opendaylight.controller.sal.flowprogrammer,
41               org.opendaylight.controller.sal.match,
42               org.opendaylight.controller.sal.utils,
43               org.opendaylight.controller.sal.packet,
44               javax.xml.bind.annotation,
45               javax.xml.bind,
46               org.apache.felix.dm,
47               org.apache.commons.lang3.builder,
48               org.osgi.service.component,
49               org.slf4j,
50               org.eclipse.osgi.framework.console,
51               org.osgi.framework
52             </Import-Package>
53             <Require-Bundle>
54               org.opendaylight.controller.hosttracker
55             </Require-Bundle>
56             <Service-Component>
57             </Service-Component>
58           </instructions>
59           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64   <dependencies>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>configuration</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>switchmanager</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>junit</groupId>
79       <artifactId>junit</artifactId>
80     </dependency>
81   </dependencies>
82 </project>