Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / forwardingrulesmanager / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12
13   <artifactId>forwardingrulesmanager</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             <Include-Resource>
27             </Include-Resource>
28             <Export-Package>
29               org.opendaylight.controller.forwardingrulesmanager
30             </Export-Package>
31             <Import-Package>
32               org.opendaylight.controller.clustering.services,
33               org.opendaylight.controller.configuration,
34               org.opendaylight.controller.hosttracker,
35               org.opendaylight.controller.hosttracker.hostAware,
36               org.opendaylight.controller.switchmanager,
37               org.opendaylight.controller.sal.action,
38               org.opendaylight.controller.sal.core,
39               org.opendaylight.controller.sal.flowprogrammer,
40               org.opendaylight.controller.sal.match,
41               org.opendaylight.controller.sal.utils,
42               org.opendaylight.controller.sal.packet,
43               javax.xml.bind.annotation,
44               javax.xml.bind,
45               org.apache.felix.dm,
46               org.apache.commons.lang3.builder,
47               org.osgi.service.component,
48               org.slf4j,
49               org.eclipse.osgi.framework.console,
50               org.osgi.framework
51             </Import-Package>
52             <Require-Bundle>
53               org.opendaylight.controller.hosttracker
54             </Require-Bundle>
55             <Service-Component>
56             </Service-Component>
57           </instructions>
58           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <dependencies>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>hosttracker</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     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>clustering.services</artifactId>
77       <version>0.4.0-SNAPSHOT</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>switchmanager</artifactId>
82       <version>0.4.0-SNAPSHOT</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal</artifactId>
87       <version>0.5.0-SNAPSHOT</version>
88     </dependency>
89     <dependency>
90       <groupId>junit</groupId>
91       <artifactId>junit</artifactId>
92       <version>4.8.1</version>
93       <scope>test</scope>
94     </dependency>
95   </dependencies>
96 </project>