blob: 19ef988d30df5962a6a105059a7490c7a6ac08f5 [file] [log] [blame]
tragait34a94b92021-03-30 12:02:27 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
lukegleeson7e243c92023-04-20 15:32:12 +01004 Copyright (C) 2021-2023 Nordix Foundation
lukegleeson15b93e72021-07-07 15:25:30 +01005 Modifications Copyright (C) 2021 Pantheon.tech
lukegleeson82a550f2022-07-11 10:55:53 +01006 Modifications Copyright (C) 2022 Bell Canada
tragait34a94b92021-03-30 12:02:27 +01007 ================================================================================
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.
lukegleeson15b93e72021-07-07 15:25:30 +010019
20 SPDX-License-Identifier: Apache-2.0
tragait34a94b92021-03-30 12:02:27 +010021 ============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">
ToineSiebelink73001f62021-09-17 15:07:38 +010026 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.cps</groupId>
29 <artifactId>cps-parent</artifactId>
danielhanrahan19f963b2023-06-15 13:52:34 +010030 <version>3.3.3-SNAPSHOT</version>
ToineSiebelink73001f62021-09-17 15:07:38 +010031 <relativePath>../cps-parent/pom.xml</relativePath>
32 </parent>
tragait34a94b92021-03-30 12:02:27 +010033
ToineSiebelink73001f62021-09-17 15:07:38 +010034 <artifactId>cps-ncmp-service</artifactId>
tragait34a94b92021-03-30 12:02:27 +010035
puthuparambil.aditya395795e2022-05-27 10:59:19 +010036 <properties>
37 <minimum-coverage>0.96</minimum-coverage>
38 </properties>
ToineSiebelink73001f62021-09-17 15:07:38 +010039 <dependencies>
40 <dependency>
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010041 <groupId>org.apache.commons</groupId>
42 <artifactId>commons-lang3</artifactId>
43 </dependency>
44 <dependency>
sourabh_sourabha287fc32023-06-15 03:12:29 +010045 <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>
ToineSiebelink73001f62021-09-17 15:07:38 +010057 <groupId>${project.groupId}</groupId>
58 <artifactId>cps-service</artifactId>
59 </dependency>
60 <dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +010061 <groupId>org.onap.cps</groupId>
62 <artifactId>cps-ncmp-events</artifactId>
63 </dependency>
64 <dependency>
lukegleeson82a550f2022-07-11 10:55:53 +010065 <groupId>${project.groupId}</groupId>
66 <artifactId>cps-path-parser</artifactId>
67 </dependency>
68 <dependency>
sourabh_sourabha287fc32023-06-15 03:12:29 +010069 <groupId>com.hazelcast</groupId>
70 <artifactId>hazelcast-spring</artifactId>
JosephKeenanf31c7f82022-05-24 18:59:25 +010071 </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>
mpriyank02389982022-07-01 14:47:09 +010080 <dependency>
sourabh_sourabha287fc32023-06-15 03:12:29 +010081 <groupId>org.springframework</groupId>
82 <artifactId>spring-web</artifactId>
mpriyank02389982022-07-01 14:47:09 +010083 </dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +010084 <!-- T E S T - D E P E N D E N C I E S -->
85 <dependency>
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010086 <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>
ToineSiebelink73001f62021-09-17 15:07:38 +010097 <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>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100107 <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>
ToineSiebelink73001f62021-09-17 15:07:38 +0100116 </dependencies>
lukegleeson15b93e72021-07-07 15:25:30 +0100117</project>