Bump upstream dependencies to Cl-SR2
[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.6</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.2.0</transportpce.models.version>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25   </properties>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.transportpce.models</groupId>
31         <artifactId>transportpce-models-artifacts</artifactId>
32         <version>${transportpce.models.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.transportpce.models</groupId>
42       <artifactId>openroadm-common-10.1.0</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.transportpce.models</groupId>
46       <artifactId>openroadm-service-10.1.0</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>transportpce-api</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>concepts</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>yang-common</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal</groupId>
63       <artifactId>mdsal-binding-api</artifactId>
64       <scope>compile</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.glassfish.jersey.core</groupId>
68       <artifactId>jersey-common</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.glassfish.jersey.core</groupId>
72       <artifactId>jersey-client</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.glassfish.jersey.ext</groupId>
76       <artifactId>jersey-proxy-client</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.glassfish.jersey.media</groupId>
80       <artifactId>jersey-media-json-jackson</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.fasterxml.jackson.core</groupId>
84       <artifactId>jackson-annotations</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-databind</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>com.fasterxml.jackson.core</groupId>
92       <artifactId>jackson-core</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>com.fasterxml.jackson.datatype</groupId>
96       <artifactId>jackson-datatype-jsr310</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>jakarta.ws.rs</groupId>
100       <artifactId>jakarta.ws.rs-api</artifactId>
101     </dependency>
102
103     <!-- Testing dependencies -->
104     <dependency>
105       <groupId>org.glassfish.jersey.inject</groupId>
106       <artifactId>jersey-hk2</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.glassfish.jersey.test-framework</groupId>
111       <artifactId>jersey-test-framework-core</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
116       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.glassfish.jersey.core</groupId>
121       <artifactId>jersey-server</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.mockito</groupId>
126       <artifactId>mockito-core</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>ch.qos.logback</groupId>
131       <artifactId>logback-classic</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>ch.qos.logback</groupId>
136       <artifactId>logback-core</artifactId>
137       <scope>test</scope>
138     </dependency>
139   </dependencies>
140
141   <build>
142     <plugins>
143       <plugin>
144         <groupId>org.codehaus.mojo</groupId>
145         <artifactId>build-helper-maven-plugin</artifactId>
146         <executions>
147           <execution>
148             <id>attach-dmaap-artifact</id>
149             <goals>
150               <goal>attach-artifact</goal>
151             </goals>
152             <configuration>
153               <artifacts>
154                 <artifact>
155                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.dmaap.cfg</file>
156                   <type>cfg</type>
157                   <classifier>config</classifier>
158                 </artifact>
159               </artifacts>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164     </plugins>
165   </build>
166 </project>