Bump versions by x.y.(z+1)
[alto.git] / alto-basic / auto-maps / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: -->
3 <!--
4 Copyright © 2016 SNLAB and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.6.3-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.alto.basic</groupId>
21   <artifactId>alto-auto-maps-impl</artifactId>
22   <version>0.4.3-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <mdsal.version>1.5.3-SNAPSHOT</mdsal.version>
27     <l2switch.version>0.5.3-SNAPSHOT</l2switch.version>
28   </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>alto-auto-maps-api</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>alto-manual-maps-api</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42
43     <dependency>
44       <groupId>org.opendaylight.alto.core</groupId>
45       <artifactId>alto-service-model-networkmap-api</artifactId>
46       <version>${project.version}</version>
47     </dependency>
48
49     <dependency>
50       <groupId>org.opendaylight.alto.core</groupId>
51       <artifactId>alto-service-model-costmap-api</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.controller.model</groupId>
57       <artifactId>model-topology</artifactId>
58       <version>${mdsal.version}</version>
59     </dependency>
60
61     <dependency>
62       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
63       <artifactId>hosttracker-model</artifactId>
64       <version>${l2switch.version}</version>
65     </dependency>
66
67     <dependency>
68       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
69       <artifactId>addresstracker-model</artifactId>
70       <version>${l2switch.version}</version>
71     </dependency>
72
73     <!-- Testing Dependencies -->
74     <dependency>
75       <groupId>junit</groupId>
76       <artifactId>junit</artifactId>
77       <scope>test</scope>
78     </dependency>
79
80     <dependency>
81       <groupId>org.mockito</groupId>
82       <artifactId>mockito-core</artifactId>
83       <scope>test</scope>
84     </dependency>
85   </dependencies>
86 </project>