253906e9c1f5ecfd25b34b3bed0f2d2db6a32283
[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   <scm>
13     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16   </scm>
17
18   <artifactId>forwardingrulesmanager</artifactId>
19   <version>0.4.0-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             <Include-Resource>
32             </Include-Resource>
33             <Export-Package>
34               org.opendaylight.controller.forwardingrulesmanager
35             </Export-Package>
36             <Import-Package>
37               org.opendaylight.controller.clustering.services,
38               org.opendaylight.controller.configuration,
39               org.opendaylight.controller.hosttracker,
40               org.opendaylight.controller.hosttracker.hostAware,
41               org.opendaylight.controller.switchmanager,
42               org.opendaylight.controller.sal.action,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.flowprogrammer,
45               org.opendaylight.controller.sal.match,
46               org.opendaylight.controller.sal.utils,
47               org.opendaylight.controller.sal.packet,
48               javax.xml.bind.annotation,
49               javax.xml.bind,
50               org.apache.felix.dm,
51               org.apache.commons.lang3.builder,
52               org.osgi.service.component,
53               org.slf4j,
54               org.eclipse.osgi.framework.console,
55               org.osgi.framework
56             </Import-Package>
57             <Require-Bundle>
58               org.opendaylight.controller.hosttracker
59             </Require-Bundle>
60             <Service-Component>
61             </Service-Component>
62           </instructions>
63           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68   <dependencies>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>hosttracker</artifactId>
72       <version>0.4.0-SNAPSHOT</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>configuration</artifactId>
77       <version>0.4.0-SNAPSHOT</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>clustering.services</artifactId>
82       <version>0.4.0-SNAPSHOT</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>switchmanager</artifactId>
87       <version>0.5.0-SNAPSHOT</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>sal</artifactId>
92       <version>0.5.0-SNAPSHOT</version>
93     </dependency>
94     <dependency>
95       <groupId>junit</groupId>
96       <artifactId>junit</artifactId>
97       <version>4.8.1</version>
98       <scope>test</scope>
99     </dependency>
100   </dependencies>
101 </project>