Bump upstream dependencies to Cl-SR1
[transportpce.git] / nbinotifications / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2020 Orange and others. All rights reserved. This program
3     and the accompanying materials are made available under the terms of the
4     Eclipse Public License v1.0 which accompanies this distribution, and is available
5     at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0"
7     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.mdsal</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>10.0.5</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.transportpce</groupId>
19   <artifactId>transportpce-nbinotifications</artifactId>
20   <version>7.0.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25     <transportpce.models.version>17.1.0-SNAPSHOT</transportpce.models.version>
26     <kafka.version>3.0.0</kafka.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.transportpce.models</groupId>
32       <artifactId>openroadm-common-10.1.0</artifactId>
33       <version>${transportpce.models.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.transportpce.models</groupId>
37       <artifactId>openroadm-service-10.1.0</artifactId>
38       <version>${transportpce.models.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.transportpce.models</groupId>
42       <artifactId>tapi-2.1.1</artifactId>
43       <version>${transportpce.models.version}</version>
44     </dependency>
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-common</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>concepts</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.yangtools</groupId>
61       <artifactId>yang-common</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>yang-data-api</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>yang-data-codec-gson</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.mdsal</groupId>
73       <artifactId>yang-binding</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal</groupId>
77       <artifactId>mdsal-common-api</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal</groupId>
81       <artifactId>mdsal-binding-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.mdsal</groupId>
85       <artifactId>mdsal-binding-dom-codec-spi</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>com.google.guava</groupId>
89       <artifactId>guava</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.apache.kafka</groupId>
93       <artifactId>kafka-clients</artifactId>
94       <version>${kafka.version}</version>
95     </dependency>
96
97     <!-- Testing Dependencies -->
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>test-common</artifactId>
101       <version>${project.version}</version>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.mdsal</groupId>
106       <artifactId>mdsal-binding-generator</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>com.fasterxml.jackson.core</groupId>
111       <artifactId>jackson-databind</artifactId>
112       <scope>test</scope>
113     </dependency>
114   </dependencies>
115 </project>