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