Merge changes I67420353,I6851f9b9
[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
11   <artifactId>forwardingrulesmanager</artifactId>
12   <version>0.6.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>configuration</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>switchmanager</artifactId>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <version>${bundle.plugin.version}</version>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Include-Resource></Include-Resource>
43             <Export-Package>org.opendaylight.controller.forwardingrulesmanager</Export-Package>
44             <Import-Package>org.opendaylight.controller.configuration,
45               org.opendaylight.controller.switchmanager,
46               org.opendaylight.controller.sal.action,
47               org.opendaylight.controller.sal.core,
48               org.opendaylight.controller.sal.flowprogrammer,
49               org.opendaylight.controller.sal.match,
50               org.opendaylight.controller.sal.utils,
51               org.opendaylight.controller.sal.packet,
52               javax.xml.bind.annotation,
53               javax.xml.bind,
54               org.apache.felix.dm,
55               org.apache.commons.lang3.builder,
56               org.osgi.service.component,
57               org.slf4j,
58               org.eclipse.osgi.framework.console,
59               org.osgi.framework</Import-Package>
60             <Require-Bundle>org.opendaylight.controller.hosttracker</Require-Bundle>
61             <Service-Component></Service-Component>
62           </instructions>
63           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68   <scm>
69     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
70     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
71     <tag>HEAD</tag>
72     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
73   </scm>
74 </project>