Update versions for London
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / dmaap-lib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  ============LICENSE_START=======================================================
4   ~  ONAP - CDS
5   ~  ================================================================================
6   ~  Copyright (C) 2019 Huawei Technologies Co., Ltd. All rights reserved.
7   ~  ================================================================================
8   ~  Licensed under the Apache License, Version 2.0 (the "License");
9   ~  you may not use this file except in compliance with the License.
10   ~  You may obtain a copy of the License at
11   ~
12   ~       http://www.apache.org/licenses/LICENSE-2.0
13   ~
14   ~  Unless required by applicable law or agreed to in writing, software
15   ~  distributed under the License is distributed on an "AS IS" BASIS,
16   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   ~  See the License for the specific language governing permissions and
18   ~  limitations under the License.
19   ~  ============LICENSE_END=========================================================
20   -->
21
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
27         <artifactId>modules-commons</artifactId>
28         <version>1.5.0-SNAPSHOT</version>
29     </parent>
30
31     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
32     <artifactId>dmaap-lib</artifactId>
33     <packaging>jar</packaging>
34
35     <name>MS Blueprints Processor Modules - Commons - Dmaap Lib</name>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
40             <artifactId>dmaapClient</artifactId>
41             <version>${dmaap.client.version}</version>
42             <exclusions>
43                 <exclusion>
44                     <groupId>org.slf4j</groupId>
45                     <artifactId>slf4j-log4j12</artifactId>
46                 </exclusion>
47             </exclusions>
48         </dependency>
49         <dependency>
50             <groupId>org.springframework.boot</groupId>
51             <artifactId>spring-boot-starter-webflux</artifactId>
52             <exclusions>
53                 <exclusion>
54                     <groupId>org.springframework.boot</groupId>
55                     <artifactId>spring-boot-starter-logging</artifactId>
56                 </exclusion>
57             </exclusions>
58         </dependency>
59         <dependency>
60             <groupId>org.springframework.boot</groupId>
61             <artifactId>spring-boot-starter-test</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.glassfish.jersey.inject</groupId>
66             <artifactId>jersey-hk2</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>javax.ws.rs</groupId>
70             <artifactId>javax.ws.rs-api</artifactId>
71             <version>2.1-m07</version>
72         </dependency>
73         <dependency>
74             <groupId>org.jetbrains.kotlin</groupId>
75             <artifactId>kotlin-test-junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
80             <artifactId>processor-core</artifactId>
81         </dependency>
82     </dependencies>
83 </project>