protocol.openflow_netty cleanup
[controller.git] / opendaylight / protocol_plugins / openflow_netty / 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   <artifactId>protocol_plugins.openflow_netty</artifactId>
11   <version>0.1.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.apache.felix</groupId>
18         <artifactId>maven-bundle-plugin</artifactId>
19         <version>2.3.6</version>
20         <extensions>true</extensions>
21         <configuration>
22           <instructions>
23             <Import-Package>
24               org.opendaylight.controller.sal.packet,
25               org.opendaylight.controller.sal.action,
26               org.opendaylight.controller.sal.connection,
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               org.jboss.netty.*
43             </Import-Package>
44             <Export-Package>
45               org.opendaylight.controller.protocol_plugin.openflow.core.internal;-split-package:=merge-first,
46               org.opendaylight.controller.protocol_plugin.openflow.core;-split-package:=merge-first,
47             </Export-Package>
48             <Embed-Dependency>
49               org.openflow.openflowj_netty,org.jboss.netty;protocol_plugins.openflow;type=!pom;inline=false
50             </Embed-Dependency>
51             <Embed-Transitive>
52               false
53             </Embed-Transitive>
54             <Bundle-Activator>
55               org.opendaylight.controller.protocol_plugin.openflow.internal.EnhancedActivator
56             </Bundle-Activator>
57           </instructions>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal</artifactId>
66       <version>0.5.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal.connection</artifactId>
71       <version>0.1.0-SNAPSHOT</version>
72     </dependency>
73     <!-- Make sure this comes before protocol_plugins.openflow Maven
74          honors the classpath order to reliable builds and here we
75          want to make sure that the openflowJ embedded is picking the
76          netty one over the non-netty enabled-->
77     <dependency>
78       <groupId>org.opendaylight.controller.thirdparty</groupId>
79       <artifactId>org.openflow.openflowj_netty</artifactId>
80       <version>1.0.2-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>protocol_plugins.openflow</artifactId>
85       <version>0.4.0-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90       <version>4.8.1</version>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.jboss.netty</groupId>
95       <artifactId>netty</artifactId>
96       <version>3.2.6.Final</version>
97     </dependency>
98   </dependencies>
99 </project>