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