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