Add tests for service 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     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>transportpce-common</artifactId>
31             <version>${project.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>transportpce-api</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}.ordmodels</groupId>
40             <artifactId>transportpce-ordmodels-service</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.apache.kafka</groupId>
45             <artifactId>kafka-clients</artifactId>
46             <version>${kafka.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-dom-adapter</artifactId>
55         </dependency>
56         <!-- Testing Dependencies -->
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>test-common</artifactId>
60             <version>${project.version}</version>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>com.fasterxml.jackson.core</groupId>
65             <artifactId>jackson-databind</artifactId>
66             <scope>test</scope>
67         </dependency>
68     </dependencies>
69 </project>