Incrementing versions by 0.1.0 for post-Helium master branch
[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.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>protocol_plugins.stub</artifactId>
12   <version>0.5.0-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         <extensions>true</extensions>
30         <configuration>
31           <instructions>
32             <Import-Package>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.apache.commons.lang3.builder,
43               org.apache.commons.lang3.tuple, org.apache.felix.dm,
44               org.slf4j, org.eclipse.osgi.framework.console,
45               org.osgi.framework</Import-Package>
46             <Export-Package>org.opendaylight.controller.protocol_plugins.stub.internal</Export-Package>
47             <Bundle-Activator>org.opendaylight.controller.protocol_plugins.stub.internal.Activator</Bundle-Activator>
48           </instructions>
49           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54   <scm>
55     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
56     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
57     <tag>HEAD</tag>
58     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
59   </scm>
60 </project>