Bump upstream dependencies to Cl-SR1
[transportpce.git] / servicehandler / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2017 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 Author: Martial Coulibaly <martial.coulibaly@gfi.com> on behalf of Orange
11 -->
12 <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">
13   <modelVersion>4.0.0</modelVersion>
14
15   <parent>
16     <groupId>org.opendaylight.mdsal</groupId>
17     <artifactId>binding-parent</artifactId>
18     <version>10.0.5</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.transportpce</groupId>
23   <artifactId>transportpce-servicehandler</artifactId>
24   <version>7.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <transportpce.models.version>17.1.0-SNAPSHOT</transportpce.models.version>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <groupId>org.opendaylight.transportpce.models</groupId>
34       <artifactId>openroadm-common-7.1.0</artifactId>
35       <version>${transportpce.models.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.transportpce.models</groupId>
39       <artifactId>openroadm-common-10.1.0</artifactId>
40       <version>${transportpce.models.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.transportpce.models</groupId>
44       <artifactId>openroadm-service-10.1.0</artifactId>
45       <version>${transportpce.models.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>transportpce-api</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>transportpce-common</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>transportpce-networkmodel</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>transportpce-pce</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>transportpce-renderer</artifactId>
70       <version>${project.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>concepts</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>yang-common</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
82       <artifactId>rfc6991-ietf-yang-types</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.mdsal</groupId>
86       <artifactId>mdsal-common-api</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal</groupId>
90       <artifactId>yang-binding</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.mdsal</groupId>
94       <artifactId>mdsal-binding-api</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>com.google.guava</groupId>
98       <artifactId>guava</artifactId>
99     </dependency>
100
101     <!-- Testing Dependencies -->
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>test-common</artifactId>
105       <version>${project.version}</version>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.mdsal</groupId>
110       <artifactId>mdsal-binding-generator</artifactId>
111       <scope>test</scope>
112     </dependency>
113   </dependencies>
114 </project>