ed3ec6094a57f28297b7c2bfb765a8b582e1c591
[controller.git] / opendaylight / forwardingrulesmanager / api / 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   <artifactId>forwardingrulesmanager</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Include-Resource>
26             </Include-Resource>
27             <Export-Package>
28               org.opendaylight.controller.forwardingrulesmanager
29             </Export-Package>
30             <Import-Package>
31                       org.opendaylight.controller.clustering.services,
32                       org.opendaylight.controller.configuration,
33               org.opendaylight.controller.hosttracker,
34               org.opendaylight.controller.hosttracker.hostAware,
35               org.opendaylight.controller.switchmanager,
36               org.opendaylight.controller.sal.action,
37               org.opendaylight.controller.sal.core,
38               org.opendaylight.controller.sal.flowprogrammer,
39               org.opendaylight.controller.sal.match,
40                           org.opendaylight.controller.sal.utils,
41               org.opendaylight.controller.sal.packet,
42               javax.xml.bind.annotation,
43               javax.xml.bind,
44               org.apache.felix.dm,
45               org.apache.commons.lang3.builder,
46               org.osgi.service.component,
47               org.slf4j,
48               org.eclipse.osgi.framework.console,
49                           org.osgi.framework
50             </Import-Package>
51         <Require-Bundle>
52               org.opendaylight.controller.hosttracker
53         </Require-Bundle>
54             <Service-Component>
55             </Service-Component>
56           </instructions>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61   <dependencies>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>hosttracker</artifactId>
65       <version>0.4.0-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>configuration</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>    
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>clustering.services</artifactId>
75       <version>0.4.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>switchmanager</artifactId>
80       <version>0.4.0-SNAPSHOT</version>
81     </dependency>
82         <dependency>
83                 <groupId>org.opendaylight.controller</groupId>
84                 <artifactId>sal</artifactId>
85                 <version>0.5.0-SNAPSHOT</version>
86         </dependency>
87     <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90       <version>4.8.1</version>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
94 </project>