c95520c7ce1be9989740d67e757345e16a162811
[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         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <dependencies>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal</artifactId>
64       <version>0.5.0-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller.thirdparty</groupId>
68       <artifactId>org.openflow.openflowj</artifactId>
69       <version>1.0.2-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>junit</groupId>
73       <artifactId>junit</artifactId>
74       <version>4.8.1</version>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78 </project>