BUG-731: RoutedRegistration.close() should not throw
[controller.git] / opendaylight / protocol_plugins / stub / 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.stub</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal</artifactId>
22     </dependency>
23   </dependencies>
24   <build>
25     <plugins>
26       <plugin>
27         <groupId>org.apache.felix</groupId>
28         <artifactId>maven-bundle-plugin</artifactId>
29         <version>${bundle.plugin.version}</version>
30         <extensions>true</extensions>
31         <configuration>
32           <instructions>
33             <Import-Package>org.opendaylight.controller.sal.packet,
34               org.opendaylight.controller.sal.action,
35               org.opendaylight.controller.sal.discovery,
36               org.opendaylight.controller.sal.topology,
37               org.opendaylight.controller.sal.core,
38               org.opendaylight.controller.sal.flowprogrammer,
39               org.opendaylight.controller.sal.reader,
40               org.opendaylight.controller.sal.inventory,
41               org.opendaylight.controller.sal.match,
42               org.opendaylight.controller.sal.utils,
43               org.apache.commons.lang3.builder,
44               org.apache.commons.lang3.tuple, org.apache.felix.dm,
45               org.slf4j, org.eclipse.osgi.framework.console,
46               org.osgi.framework</Import-Package>
47             <Export-Package>org.opendaylight.controller.protocol_plugins.stub.internal</Export-Package>
48             <Bundle-Activator>org.opendaylight.controller.protocol_plugins.stub.internal.Activator</Bundle-Activator>
49           </instructions>
50           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55   <scm>
56     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
57     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
58     <tag>HEAD</tag>
59     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
60   </scm>
61 </project>