Merge "Patch #2 : Introduce kafka template for cloud events"
[cps.git] / cps-ncmp-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (C) 2021-2023 Nordix Foundation
5   Modifications Copyright (C) 2021 Pantheon.tech
6   Modifications Copyright (C) 2022 Bell Canada
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   SPDX-License-Identifier: Apache-2.0
21   ============LICENSE_END=========================================================
22 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27     <parent>
28         <groupId>org.onap.cps</groupId>
29         <artifactId>cps-parent</artifactId>
30         <version>3.3.3-SNAPSHOT</version>
31         <relativePath>../cps-parent/pom.xml</relativePath>
32     </parent>
33
34     <artifactId>cps-ncmp-service</artifactId>
35
36     <properties>
37         <minimum-coverage>0.96</minimum-coverage>
38     </properties>
39     <dependencies>
40         <dependency>
41             <groupId>org.apache.commons</groupId>
42             <artifactId>commons-lang3</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>io.cloudevents</groupId>
46             <artifactId>cloudevents-json-jackson</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>io.cloudevents</groupId>
50             <artifactId>cloudevents-kafka</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>io.cloudevents</groupId>
54             <artifactId>cloudevents-spring</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>cps-service</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.onap.cps</groupId>
62             <artifactId>cps-ncmp-events</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>cps-path-parser</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>com.hazelcast</groupId>
70             <artifactId>hazelcast-spring</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.mapstruct</groupId>
74             <artifactId>mapstruct</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.mapstruct</groupId>
78             <artifactId>mapstruct-processor</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.springframework</groupId>
82             <artifactId>spring-web</artifactId>
83         </dependency>
84         <!-- T E S T - D E P E N D E N C I E S -->
85         <dependency>
86             <groupId>org.springframework.boot</groupId>
87             <artifactId>spring-boot-starter-test</artifactId>
88             <scope>test</scope>
89             <exclusions>
90                 <exclusion>
91                     <groupId>org.junit.vintage</groupId>
92                     <artifactId>junit-vintage-engine</artifactId>
93                 </exclusion>
94             </exclusions>
95         </dependency>
96         <dependency>
97             <groupId>org.spockframework</groupId>
98             <artifactId>spock-core</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.spockframework</groupId>
103             <artifactId>spock-spring</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.testcontainers</groupId>
108             <artifactId>kafka</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.testcontainers</groupId>
113             <artifactId>spock</artifactId>
114             <scope>test</scope>
115         </dependency>
116     </dependencies>
117 </project>