Compile against Fluorine SR2
[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.apps.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     <properties>
35         <dmaap.client.version>1.1.5</dmaap.client.version>
36     </properties>
37
38     <dependencies>
39         <dependency>
40             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
41             <artifactId>dmaapClient</artifactId>
42             <version>${dmaap.client.version}</version>
43             <exclusions>
44                 <exclusion>
45                     <groupId>org.slf4j</groupId>
46                     <artifactId>slf4j-log4j12</artifactId>
47                 </exclusion>
48             </exclusions>
49         </dependency>
50
51         <dependency>
52             <groupId>org.springframework.boot</groupId>
53             <artifactId>spring-boot-starter-webflux</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.springframework.boot</groupId>
57             <artifactId>spring-boot-starter-test</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.glassfish.jersey.inject</groupId>
62             <artifactId>jersey-hk2</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>javax.ws.rs</groupId>
66             <artifactId>javax.ws.rs-api</artifactId>
67             <version>2.1-m07</version>
68         </dependency>
69         <dependency>
70             <groupId>org.jetbrains.kotlin</groupId>
71             <artifactId>kotlin-test-junit</artifactId>
72             <scope>test</scope>
73         </dependency>
74     </dependencies>
75
76 </project>