Bump upstream dependencies to S-SR2
[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>9.0.5</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.transportpce</groupId>
21   <artifactId>transportpce-olm</artifactId>
22   <version>6.0.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>${project.groupId}.ordmodels</groupId>
28       <artifactId>transportpce-ordmodels-common</artifactId>
29       <version>${project.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}.ordmodels</groupId>
33       <artifactId>transportpce-ordmodels-device</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}.ordmodels</groupId>
38       <artifactId>transportpce-ordmodels-network</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>transportpce-api</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>transportpce-common</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>concepts</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>yang-common</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
61       <artifactId>rfc6991-ietf-yang-types</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
65       <artifactId>rfc8345-ietf-network</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
69       <artifactId>rfc8345-ietf-network-topology</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.mdsal</groupId>
73       <artifactId>mdsal-common-api</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal</groupId>
77       <artifactId>yang-binding</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal</groupId>
81       <artifactId>mdsal-binding-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>com.google.guava</groupId>
85       <artifactId>guava</artifactId>
86     </dependency>
87     <!-- Sodium bump: javax.annotation.Nullable and friends -->
88     <dependency>
89       <groupId>com.google.code.findbugs</groupId>
90       <artifactId>jsr305</artifactId>
91       <version>3.0.2</version>
92       <optional>true</optional>
93     </dependency>
94
95     <!-- Testing Dependencies -->
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>test-common</artifactId>
99       <version>${project.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal</groupId>
104       <artifactId>mdsal-binding-generator</artifactId>
105       <scope>test</scope>
106     </dependency>
107   </dependencies>
108 </project>