Bump upstream dependencies to Cl-SR1
[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>10.0.5</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.transportpce</groupId>
21   <artifactId>transportpce-olm</artifactId>
22   <version>7.0.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <transportpce.models.version>17.1.0-SNAPSHOT</transportpce.models.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.transportpce.models</groupId>
32       <artifactId>openroadm-common-1.2.1</artifactId>
33       <version>${transportpce.models.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.transportpce.models</groupId>
37       <artifactId>openroadm-common-2.2.1</artifactId>
38       <version>${transportpce.models.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.transportpce.models</groupId>
42       <artifactId>openroadm-common-7.1.0</artifactId>
43       <version>${transportpce.models.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.transportpce.models</groupId>
47       <artifactId>openroadm-common-10.1.0</artifactId>
48       <version>${transportpce.models.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.transportpce.models</groupId>
52       <artifactId>openroadm-device-1.2.1</artifactId>
53       <version>${transportpce.models.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.transportpce.models</groupId>
57       <artifactId>openroadm-device-2.2.1</artifactId>
58       <version>${transportpce.models.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.transportpce.models</groupId>
62       <artifactId>openroadm-device-7.1.0</artifactId>
63       <version>${transportpce.models.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.transportpce.models</groupId>
67       <artifactId>openroadm-network-10.1.0</artifactId>
68       <version>${transportpce.models.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.transportpce.models</groupId>
72       <artifactId>openroadm-service-10.1.0</artifactId>
73       <version>${transportpce.models.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>transportpce-api</artifactId>
78       <version>${project.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>transportpce-common</artifactId>
83       <version>${project.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.yangtools</groupId>
87       <artifactId>concepts</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.yangtools</groupId>
91       <artifactId>yang-common</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
95       <artifactId>rfc6991-ietf-yang-types</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
99       <artifactId>rfc8345-ietf-network</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
103       <artifactId>rfc8345-ietf-network-topology</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.mdsal</groupId>
107       <artifactId>mdsal-common-api</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.mdsal</groupId>
111       <artifactId>yang-binding</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.mdsal</groupId>
115       <artifactId>mdsal-binding-api</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>com.google.guava</groupId>
119       <artifactId>guava</artifactId>
120     </dependency>
121     <!-- Sodium bump: javax.annotation.Nullable and friends -->
122     <dependency>
123       <groupId>com.google.code.findbugs</groupId>
124       <artifactId>jsr305</artifactId>
125       <version>3.0.2</version>
126       <optional>true</optional>
127     </dependency>
128
129     <!-- Testing Dependencies -->
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>test-common</artifactId>
133       <version>${project.version}</version>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.mdsal</groupId>
138       <artifactId>mdsal-binding-generator</artifactId>
139       <scope>test</scope>
140     </dependency>
141   </dependencies>
142 </project>