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