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