9ff17cf4a891d0012d5a585683b9cec106051749
[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>9.0.4</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.transportpce</groupId>
17   <artifactId>transportpce-dmaap-client</artifactId>
18   <version>5.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     <dependency>
92       <groupId>javax.ws.rs</groupId>
93       <artifactId>javax.ws.rs-api</artifactId>
94     </dependency>
95
96     <!-- Testing dependencies -->
97     <dependency>
98       <groupId>org.glassfish.jersey.inject</groupId>
99       <artifactId>jersey-hk2</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.glassfish.jersey.test-framework</groupId>
104       <artifactId>jersey-test-framework-core</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
109       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.mockito</groupId>
114       <artifactId>mockito-core</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>ch.qos.logback</groupId>
119       <artifactId>logback-classic</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>ch.qos.logback</groupId>
124       <artifactId>logback-core</artifactId>
125     </dependency>
126   </dependencies>
127 </project>