Change generated MANIFEST.MF location
[controller.git] / opendaylight / protocol_plugins / openflow / 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.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>protocol_plugins.openflow</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <version>2.3.6</version>
21         <extensions>true</extensions>
22         <configuration>
23           <instructions>
24             <Import-Package>
25               org.opendaylight.controller.sal.packet,
26               org.opendaylight.controller.sal.action,
27               org.opendaylight.controller.sal.discovery,
28               org.opendaylight.controller.sal.topology,
29               org.opendaylight.controller.sal.core,
30               org.opendaylight.controller.sal.flowprogrammer,
31               org.opendaylight.controller.sal.reader,
32               org.opendaylight.controller.sal.inventory,
33               org.opendaylight.controller.sal.match,
34               org.opendaylight.controller.sal.utils,
35               org.apache.commons.lang3.builder,
36               org.apache.commons.lang3.tuple,
37               org.apache.felix.dm,
38               org.slf4j,
39               org.eclipse.osgi.framework.console,
40                           org.osgi.framework,
41                           javax.net.ssl
42             </Import-Package>
43             <Export-Package>
44                           org.opendaylight.controller.protocol_plugin.openflow.internal
45             </Export-Package>
46             <Embed-Dependency>
47               org.openflow.openflowj
48             </Embed-Dependency>
49             <Embed-Transitive>
50               false
51             </Embed-Transitive>
52             <Bundle-Activator>
53               org.opendaylight.controller.protocol_plugin.openflow.internal.Activator
54             </Bundle-Activator>
55           </instructions>
56           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61   <dependencies>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal</artifactId>
65       <version>0.5.0-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller.thirdparty</groupId>
69       <artifactId>org.openflow.openflowj</artifactId>
70       <version>1.0.2-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>junit</groupId>
74       <artifactId>junit</artifactId>
75       <version>4.8.1</version>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79 </project>