Upgrade lighty to Chlorine
[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.2</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.transportpce</groupId>
17   <artifactId>transportpce-dmaap-client</artifactId>
18   <version>7.0.0-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20   <description>client to send message to Dmaap message router</description>
21
22   <properties>
23     <transportpce.models.version>17.0.0-SNAPSHOT</transportpce.models.version>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25   </properties>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.transportpce.models</groupId>
30       <artifactId>openroadm-common-10.1.0</artifactId>
31       <version>${transportpce.models.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.transportpce.models</groupId>
35       <artifactId>openroadm-service-10.1.0</artifactId>
36       <version>${transportpce.models.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.ext</groupId>
66       <artifactId>jersey-proxy-client</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.glassfish.jersey.media</groupId>
70       <artifactId>jersey-media-json-jackson</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>com.fasterxml.jackson.core</groupId>
74       <artifactId>jackson-annotations</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>com.fasterxml.jackson.core</groupId>
78       <artifactId>jackson-databind</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>com.fasterxml.jackson.core</groupId>
82       <artifactId>jackson-core</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>com.fasterxml.jackson.datatype</groupId>
86       <artifactId>jackson-datatype-jsr310</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>jakarta.ws.rs</groupId>
90       <artifactId>jakarta.ws.rs-api</artifactId>
91     </dependency>
92
93     <!-- Testing dependencies -->
94     <dependency>
95       <groupId>org.glassfish.jersey.inject</groupId>
96       <artifactId>jersey-hk2</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.glassfish.jersey.test-framework</groupId>
101       <artifactId>jersey-test-framework-core</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
106       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.glassfish.jersey.core</groupId>
111       <artifactId>jersey-server</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.mockito</groupId>
116       <artifactId>mockito-core</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>ch.qos.logback</groupId>
121       <artifactId>logback-classic</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>ch.qos.logback</groupId>
126       <artifactId>logback-core</artifactId>
127       <scope>test</scope>
128     </dependency>
129   </dependencies>
130 </project>