Change generated MANIFEST.MF location
[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           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>hosttracker</artifactId>
66       <version>0.4.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>configuration</artifactId>
71       <version>0.4.0-SNAPSHOT</version>
72     </dependency>    
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>clustering.services</artifactId>
76       <version>0.4.0-SNAPSHOT</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>switchmanager</artifactId>
81       <version>0.4.0-SNAPSHOT</version>
82     </dependency>
83         <dependency>
84                 <groupId>org.opendaylight.controller</groupId>
85                 <artifactId>sal</artifactId>
86                 <version>0.5.0-SNAPSHOT</version>
87         </dependency>
88     <dependency>
89       <groupId>junit</groupId>
90       <artifactId>junit</artifactId>
91       <version>4.8.1</version>
92       <scope>test</scope>
93     </dependency>
94   </dependencies>
95 </project>