Add new Maven module to manage NBI Notifications
[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>7.0.5</version>
15         <relativePath />
16     </parent>
17
18     <groupId>org.opendaylight.transportpce</groupId>
19     <artifactId>transportpce-nbinotifications</artifactId>
20     <version>3.0.0-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <properties>
24         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25         <kafka.version>2.6.0</kafka.version>
26     </properties>
27
28     <dependencies>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>transportpce-common</artifactId>
32             <version>${project.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>transportpce-api</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}.ordmodels</groupId>
41             <artifactId>transportpce-ordmodels-service</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.apache.kafka</groupId>
46             <artifactId>kafka-clients</artifactId>
47             <version>${kafka.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-binding-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-binding-dom-adapter</artifactId>
56         </dependency>
57         <!-- Testing Dependencies -->
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>test-common</artifactId>
61             <version>${project.version}</version>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>com.fasterxml.jackson.core</groupId>
66             <artifactId>jackson-databind</artifactId>
67             <scope>test</scope>
68         </dependency>
69     </dependencies>
70
71 </project>