Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / extension / openflowplugin-extension-onf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Pantheon Technologies s.r.o. and others. All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <parent>
13         <groupId>org.opendaylight.openflowplugin</groupId>
14         <artifactId>openflowplugin-extension-parent</artifactId>
15         <version>0.8.0-SNAPSHOT</version>
16         <relativePath>../</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>openflowplugin-extension-onf</artifactId>
21     <packaging>bundle</packaging>
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.felix</groupId>
27                 <artifactId>maven-bundle-plugin</artifactId>
28             </plugin>
29         </plugins>
30     </build>
31
32     <dependencies>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>openflowplugin-extension-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}.openflowjava</groupId>
39             <artifactId>openflow-protocol-spi</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>openflowplugin-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>openflowplugin</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>junit</groupId>
51             <artifactId>junit</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
61             <artifactId>openflow-protocol-api</artifactId>
62         </dependency>
63     </dependencies>
64
65 </project>