Prepare use of Lighty core dev SNAPSHOTs
[transportpce.git] / dmaap-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2021 Orange and others. All rights reserved. This program and the accompanying materials
3     are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
4     and is available at http://www.eclipse.org/legal/epl-v10.html -->
5 <project xmlns="http://maven.apache.org/POM/4.0.0"
6     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.mdsal</groupId>
11         <artifactId>binding-parent</artifactId>
12         <version>7.0.6</version>
13         <relativePath />
14     </parent>
15     <groupId>org.opendaylight.transportpce</groupId>
16     <artifactId>transportpce-dmaap-client</artifactId>
17     <version>4.0.0-SNAPSHOT</version>
18     <packaging>bundle</packaging>
19     <description>client to send message to Dmaap message router</description>
20
21     <properties>
22         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23     </properties>
24     <dependencies>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>transportpce-api</artifactId>
28             <version>${project.version}</version>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal</groupId>
32             <artifactId>mdsal-binding-api</artifactId>
33             <scope>compile</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.glassfish.jersey.core</groupId>
37             <artifactId>jersey-client</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.glassfish.jersey.ext</groupId>
41             <artifactId>jersey-proxy-client</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.glassfish.jersey.inject</groupId>
45             <artifactId>jersey-hk2</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.glassfish.jersey.media</groupId>
49             <artifactId>jersey-media-json-jackson</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>com.fasterxml.jackson.datatype</groupId>
53             <artifactId>jackson-datatype-jsr310</artifactId>
54         </dependency>
55         <!-- Testing dependencies -->
56         <dependency>
57             <groupId>org.glassfish.jersey.test-framework</groupId>
58             <artifactId>jersey-test-framework-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
63             <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.mockito</groupId>
68             <artifactId>mockito-core</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>ch.qos.logback</groupId>
73             <artifactId>logback-classic</artifactId>
74             <scope>test</scope>
75         </dependency>
76     </dependencies>
77 </project>