Bump versions by 0.1.0 for next dev cycle
[neutron.git] / dummyprovider / 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.neutron</groupId>
6     <artifactId>project-neutron-parent</artifactId>
7     <version>0.7.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>dummyprovider</artifactId>
13   <version>0.7.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
17   </properties>
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.neutron</groupId>
21       <artifactId>neutron-spi</artifactId>
22       <version>${project.version}</version>
23     </dependency>
24     <dependency>
25       <groupId>org.osgi</groupId>
26       <artifactId>org.osgi.core</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.apache.felix</groupId>
30       <artifactId>org.apache.felix.dependencymanager</artifactId>
31     </dependency>
32   </dependencies>
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <extensions>true</extensions>
39         <configuration>
40           <instructions>
41             <Import-Package>*</Import-Package>
42             <Bundle-Activator>org.opendaylight.neutron.dummyprovider.Activator</Bundle-Activator>
43           </instructions>
44           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49 </project>