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