Add TLS support in the Opendaylight Controller:
[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   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>protocol_plugins.openflow</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             <Import-Package>
26               org.opendaylight.controller.sal.packet,
27               org.opendaylight.controller.sal.action,
28               org.opendaylight.controller.sal.discovery,
29               org.opendaylight.controller.sal.topology,
30               org.opendaylight.controller.sal.core,
31               org.opendaylight.controller.sal.flowprogrammer,
32               org.opendaylight.controller.sal.reader,
33               org.opendaylight.controller.sal.inventory,
34               org.opendaylight.controller.sal.match,
35               org.opendaylight.controller.sal.utils,
36               org.apache.commons.lang3.builder,
37               org.apache.commons.lang3.tuple,
38               org.apache.felix.dm,
39               org.slf4j,
40               org.eclipse.osgi.framework.console,
41                           org.osgi.framework,
42                           javax.net.ssl
43             </Import-Package>
44             <Export-Package>
45                           org.opendaylight.controller.protocol_plugin.openflow.internal
46             </Export-Package>
47             <Embed-Dependency>
48               org.openflow.openflowj
49             </Embed-Dependency>
50             <Embed-Transitive>
51               false
52             </Embed-Transitive>
53             <Bundle-Activator>
54               org.opendaylight.controller.protocol_plugin.openflow.internal.Activator
55             </Bundle-Activator>
56           </instructions>
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.4.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>