Merge "Improving CMD-exec err msgs/handling."
[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>commons</artifactId>
28         <version>1.0.0-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>dmaap-lib</artifactId>
32     <packaging>jar</packaging>
33
34     <name>Blueprints Processor Dmaap Lib</name>
35     <description>Blueprints Processor Dmaap Lib</description>
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
50         <dependency>
51             <groupId>org.springframework.boot</groupId>
52             <artifactId>spring-boot-starter-webflux</artifactId>
53             <exclusions>
54                 <exclusion>
55                     <groupId>org.springframework.boot</groupId>
56                     <artifactId>spring-boot-starter-logging</artifactId>
57                 </exclusion>
58             </exclusions>
59         </dependency>
60         <dependency>
61             <groupId>org.springframework.boot</groupId>
62             <artifactId>spring-boot-starter-test</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.glassfish.jersey.inject</groupId>
67             <artifactId>jersey-hk2</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>javax.ws.rs</groupId>
71             <artifactId>javax.ws.rs-api</artifactId>
72             <version>2.1-m07</version>
73         </dependency>
74         <dependency>
75             <groupId>org.jetbrains.kotlin</groupId>
76             <artifactId>kotlin-test-junit</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
81             <artifactId>processor-core</artifactId>
82         </dependency>
83     </dependencies>
84 </project>