OpenDaylight Controller functional modules.
[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             </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.4.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>