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