Roll to next Guilin snapshot
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / selfservice-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 2017-2018 AT&T Intellectual Property.
4   ~
5   ~  Modifications Copyright © 2019 Bell Canada.
6   ~  Modifications Copyright © 2018 IBM.
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   -->
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>inbounds</artifactId>
27         <version>1.0.0-SNAPSHOT</version>
28     </parent>
29
30     <artifactId>selfservice-api</artifactId>
31     <packaging>jar</packaging>
32
33     <name>Blueprints Processor Selfservice API</name>
34     <description>Blueprints Processor Selfservice API</description>
35
36     <dependencies>
37         <dependency>
38            <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
39            <artifactId>blueprint-core</artifactId>
40         </dependency>
41         <dependency>
42            <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
43            <artifactId>blueprint-validation</artifactId>
44         </dependency>
45
46         <!-- For Message libraries -->
47         <dependency>
48             <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
49             <artifactId>message-lib</artifactId>
50         </dependency>
51
52         <!-- For spring-kafka -->
53         <dependency>
54             <groupId>org.springframework.kafka</groupId>
55             <artifactId>spring-kafka</artifactId>
56             <exclusions>
57                 <exclusion>
58                     <groupId>org.slf4j</groupId>
59                     <artifactId>slf4j-log4j12</artifactId>
60                 </exclusion>
61             </exclusions>
62         </dependency>
63         <dependency>
64             <groupId>org.springframework.kafka</groupId>
65             <artifactId>spring-kafka-test</artifactId>
66             <scope>test</scope>
67         </dependency>
68
69         <!-- Apache Kafka -->
70         <dependency>
71             <groupId>org.apache.kafka</groupId>
72             <artifactId>kafka_2.11</artifactId>
73             <version>${kafka.version}</version>
74             <exclusions>
75                 <exclusion>
76                     <groupId>org.slf4j</groupId>
77                     <artifactId>slf4j-log4j12</artifactId>
78                 </exclusion>
79             </exclusions>
80         </dependency>
81     </dependencies>
82 </project>