0b1ff8940788eff9fd4a0b2d1146867cc915ebcd
[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>10.0.1</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.transportpce</groupId>
17   <artifactId>transportpce-dmaap-client</artifactId>
18   <version>6.0.0-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20   <description>client to send message to Dmaap message router</description>
21
22   <properties>
23     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24   </properties>
25
26   <dependencies>
27     <dependency>
28       <groupId>${project.groupId}.ordmodels</groupId>
29       <artifactId>transportpce-ordmodels-common</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}.ordmodels</groupId>
34       <artifactId>transportpce-ordmodels-service</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>transportpce-api</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>concepts</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>yang-common</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-binding-api</artifactId>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.glassfish.jersey.core</groupId>
57       <artifactId>jersey-common</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.glassfish.jersey.core</groupId>
61       <artifactId>jersey-client</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.glassfish.jersey.core</groupId>
65       <artifactId>jersey-server</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.glassfish.jersey.ext</groupId>
69       <artifactId>jersey-proxy-client</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.glassfish.jersey.media</groupId>
73       <artifactId>jersey-media-json-jackson</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>com.fasterxml.jackson.core</groupId>
77       <artifactId>jackson-annotations</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>com.fasterxml.jackson.core</groupId>
81       <artifactId>jackson-databind</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>com.fasterxml.jackson.core</groupId>
85       <artifactId>jackson-core</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>com.fasterxml.jackson.datatype</groupId>
89       <artifactId>jackson-datatype-jsr310</artifactId>
90     </dependency>
91
92     <!-- Testing dependencies -->
93     <dependency>
94       <groupId>org.glassfish.jersey.inject</groupId>
95       <artifactId>jersey-hk2</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.glassfish.jersey.test-framework</groupId>
100       <artifactId>jersey-test-framework-core</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
105       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.mockito</groupId>
110       <artifactId>mockito-core</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>ch.qos.logback</groupId>
115       <artifactId>logback-classic</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>ch.qos.logback</groupId>
120       <artifactId>logback-core</artifactId>
121     </dependency>
122   </dependencies>
123 </project>