Bump versions by x.(y+1).z for next dev cycle
[transportpce.git] / olm / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2016 Orange 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.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.14.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.transportpce</groupId>
21   <artifactId>transportpce-olm</artifactId>
22   <version>0.3.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>1.9.0-SNAPSHOT</version>
31         <scope>import</scope>
32         <type>pom</type>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.netconf</groupId>
36         <artifactId>netconf-artifacts</artifactId>
37         <version>1.6.0-SNAPSHOT</version>
38         <scope>import</scope>
39         <type>pom</type>
40       </dependency>
41     </dependencies>
42   </dependencyManagement>
43
44   <dependencies>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>transportpce-api</artifactId>
48       <version>${project.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>transportpce-renderer</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller.model</groupId>
57       <artifactId>model-topology</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.netconf</groupId>
61       <artifactId>sal-netconf-connector</artifactId>
62     </dependency>
63
64     <!-- Testing Dependencies -->
65     <dependency>
66       <groupId>junit</groupId>
67       <artifactId>junit</artifactId>
68       <scope>test</scope>
69     </dependency>
70
71     <dependency>
72       <groupId>org.mockito</groupId>
73       <artifactId>mockito-core</artifactId>
74       <scope>test</scope>
75     </dependency>
76   </dependencies>
77
78 </project>