Bump upstream dependencies to latest Ca versions
[transportpce.git] / renderer / 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>13.0.1</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.transportpce</groupId>
21   <artifactId>transportpce-renderer</artifactId>
22   <version>9.0.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <transportpce.models.version>20.0.0-SNAPSHOT</transportpce.models.version>
27   </properties>
28
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>org.opendaylight.transportpce.models</groupId>
33         <artifactId>transportpce-models-artifacts</artifactId>
34         <version>${transportpce.models.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40
41   <dependencies>
42     <dependency>
43       <groupId>org.opendaylight.transportpce.models</groupId>
44       <artifactId>openroadm-common-1.2.1</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.transportpce.models</groupId>
48       <artifactId>openroadm-common-2.2.1</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.transportpce.models</groupId>
52       <artifactId>openroadm-common-7.1.0</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.transportpce.models</groupId>
56       <artifactId>openroadm-common-13.1.0</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.transportpce.models</groupId>
60       <artifactId>openroadm-device-1.2.1</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.transportpce.models</groupId>
64       <artifactId>openroadm-device-2.2.1</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce.models</groupId>
68       <artifactId>openroadm-device-7.1.0</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.transportpce.models</groupId>
72       <artifactId>openroadm-service-13.1.0</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>transportpce-api</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>transportpce-common</artifactId>
82       <version>${project.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>transportpce-networkmodel</artifactId>
87       <version>${project.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>transportpce-olm</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>concepts</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.yangtools</groupId>
100       <artifactId>yang-common</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal</groupId>
104       <artifactId>mdsal-common-api</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.mdsal</groupId>
108       <artifactId>yang-binding</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.mdsal</groupId>
112       <artifactId>mdsal-binding-api</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>com.google.guava</groupId>
116       <artifactId>guava</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.osgi</groupId>
120       <artifactId>org.osgi.service.component.annotations</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>com.github.spotbugs</groupId>
124       <artifactId>spotbugs-annotations</artifactId>
125     </dependency>
126
127     <!-- Testing Dependencies -->
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>test-common</artifactId>
131       <version>${project.version}</version>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.mdsal</groupId>
136       <artifactId>mdsal-binding-generator</artifactId>
137       <scope>test</scope>
138     </dependency>
139   </dependencies>
140 </project>