Merge "Add IfNewHostNotify to DeviceManager"
[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"
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.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11   <artifactId>protocol_plugins.stub</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.apache.felix</groupId>
18         <artifactId>maven-bundle-plugin</artifactId>
19         <version>2.3.6</version>
20         <extensions>true</extensions>
21         <configuration>
22           <instructions>
23             <Import-Package> org.opendaylight.controller.sal.packet,
24               org.opendaylight.controller.sal.action,
25               org.opendaylight.controller.sal.discovery,
26               org.opendaylight.controller.sal.topology,
27               org.opendaylight.controller.sal.core,
28               org.opendaylight.controller.sal.flowprogrammer,
29               org.opendaylight.controller.sal.reader,
30               org.opendaylight.controller.sal.inventory,
31               org.opendaylight.controller.sal.match,
32               org.opendaylight.controller.sal.utils,
33               org.apache.commons.lang3.builder,
34               org.apache.commons.lang3.tuple, org.apache.felix.dm,
35               org.slf4j, org.eclipse.osgi.framework.console,
36               org.osgi.framework
37             </Import-Package>
38             <Export-Package>
39               org.opendaylight.controller.protocol_plugins.stub.internal
40             </Export-Package>
41             <Bundle-Activator>
42               org.opendaylight.controller.protocol_plugins.stub.internal.Activator
43             </Bundle-Activator>
44           </instructions>
45           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50   <dependencies>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal</artifactId>
54       <version>0.5.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <version>4.8.1</version>
60       <scope>test</scope>
61     </dependency>
62   </dependencies>
63 </project>