Release version 1.4.1 maven artifacts
[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 <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">
22     <modelVersion>4.0.0</modelVersion>
23
24     <parent>
25         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
26         <artifactId>modules-commons</artifactId>
27         <version>1.4.2-SNAPSHOT</version>
28     </parent>
29
30     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
31     <artifactId>dmaap-lib</artifactId>
32     <packaging>jar</packaging>
33
34     <name>MS Blueprints Processor Modules - Commons - Dmaap Lib</name>
35
36     <dependencies>
37         <dependency>
38             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
39             <artifactId>dmaapClient</artifactId>
40             <version>${dmaap.client.version}</version>
41             <exclusions>
42                 <exclusion>
43                     <groupId>org.slf4j</groupId>
44                     <artifactId>slf4j-log4j12</artifactId>
45                 </exclusion>
46             </exclusions>
47         </dependency>
48         <dependency>
49             <groupId>org.springframework.boot</groupId>
50             <artifactId>spring-boot-starter-webflux</artifactId>
51             <exclusions>
52                 <exclusion>
53                     <groupId>org.springframework.boot</groupId>
54                     <artifactId>spring-boot-starter-logging</artifactId>
55                 </exclusion>
56             </exclusions>
57         </dependency>
58         <dependency>
59             <groupId>org.springframework.boot</groupId>
60             <artifactId>spring-boot-starter-test</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.glassfish.jersey.inject</groupId>
65             <artifactId>jersey-hk2</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>javax.ws.rs</groupId>
69             <artifactId>javax.ws.rs-api</artifactId>
70             <version>2.1-m07</version>
71         </dependency>
72         <dependency>
73             <groupId>org.jetbrains.kotlin</groupId>
74             <artifactId>kotlin-test-junit</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
79             <artifactId>processor-core</artifactId>
80         </dependency>
81     </dependencies>
82 </project>