Bump versions by x.y.(z+1)
[alto.git] / alto-extensions / simple-pce / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 SNLAB 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" 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">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.6.3-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.alto.ext</groupId>
20   <artifactId>alto-spce-impl</artifactId>
21   <version>0.4.3-SNAPSHOT</version>
22   <name>ODL :: alto :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <openflow.plugin.version>0.4.3-SNAPSHOT</openflow.plugin.version>
27     <mdsal.version>1.5.3-SNAPSHOT</mdsal.version>
28   </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>alto-spce-api</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.alto.spce.network</groupId>
38       <artifactId>network-tracker-impl</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.alto.spce.network</groupId>
43       <artifactId>network-tracker-api</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.openflowplugin.model</groupId>
48       <artifactId>model-flow-service</artifactId>
49       <version>${openflow.plugin.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller.model</groupId>
53       <artifactId>model-topology</artifactId>
54       <version>${mdsal.version}</version>
55     </dependency>
56
57     <!-- Testing Dependencies -->
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61       <scope>test</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>org.mockito</groupId>
66       <artifactId>mockito-core</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71 </project>