tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
emaclee | ea7d1b4 | 2024-03-24 19:05:34 +0000 | [diff] [blame] | 4 | Copyright (C) 2021-2024 Nordix Foundation |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 5 | Modifications Copyright (C) 2021 Pantheon.tech |
lukegleeson | 82a550f | 2022-07-11 10:55:53 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2022 Bell Canada |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 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. |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 19 | |
| 20 | SPDX-License-Identifier: Apache-2.0 |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 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"> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
| 28 | <groupId>org.onap.cps</groupId> |
| 29 | <artifactId>cps-parent</artifactId> |
danielhanrahan | 64ff458 | 2024-08-21 16:14:53 +0100 | [diff] [blame] | 30 | <version>3.5.3-SNAPSHOT</version> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 31 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 32 | </parent> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 33 | |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 34 | <artifactId>cps-ncmp-service</artifactId> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 35 | |
puthuparambil.aditya | 395795e | 2022-05-27 10:59:19 +0100 | [diff] [blame] | 36 | <properties> |
sourabh_sourabh | 3ccd62e | 2023-10-17 14:16:25 +0100 | [diff] [blame] | 37 | <minimum-coverage>0.98</minimum-coverage> |
puthuparambil.aditya | 395795e | 2022-05-27 10:59:19 +0100 | [diff] [blame] | 38 | </properties> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
david.mcweeney | 2293486 | 2024-04-25 14:37:33 +0100 | [diff] [blame] | 41 | <groupId>io.opentelemetry</groupId> |
| 42 | <artifactId>opentelemetry-exporter-otlp</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>io.opentelemetry</groupId> |
| 46 | <artifactId>opentelemetry-sdk-extension-jaeger-remote-sampler</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>io.opentelemetry</groupId> |
| 50 | <artifactId>opentelemetry-sdk-extension-autoconfigure</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>io.opentelemetry.instrumentation</groupId> |
| 54 | <artifactId>opentelemetry-kafka-clients-2.6</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
raviteja.karumuri | e9ac24f | 2023-04-13 23:44:41 +0100 | [diff] [blame] | 57 | <groupId>org.apache.commons</groupId> |
| 58 | <artifactId>commons-lang3</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
waqas.ikram | 66d033e | 2023-12-14 12:17:03 +0000 | [diff] [blame] | 61 | <groupId>org.apache.httpcomponents.client5</groupId> |
| 62 | <artifactId>httpclient5</artifactId> |
| 63 | </dependency> |
| 64 | <dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 65 | <groupId>${project.groupId}</groupId> |
| 66 | <artifactId>cps-service</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 69 | <groupId>org.onap.cps</groupId> |
| 70 | <artifactId>cps-ncmp-events</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
lukegleeson | 82a550f | 2022-07-11 10:55:53 +0100 | [diff] [blame] | 73 | <groupId>${project.groupId}</groupId> |
| 74 | <artifactId>cps-path-parser</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
sourabh_sourabh | d16143a | 2024-06-17 19:45:00 +0100 | [diff] [blame] | 77 | <groupId>com.google.code.findbugs</groupId> |
| 78 | <artifactId>annotations</artifactId> |
| 79 | </dependency> |
| 80 | <dependency> |
sourabh_sourabh | a287fc3 | 2023-06-15 03:12:29 +0100 | [diff] [blame] | 81 | <groupId>com.hazelcast</groupId> |
| 82 | <artifactId>hazelcast-spring</artifactId> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.mapstruct</groupId> |
| 86 | <artifactId>mapstruct</artifactId> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.mapstruct</groupId> |
| 90 | <artifactId>mapstruct-processor</artifactId> |
| 91 | </dependency> |
mpriyank | 0238998 | 2022-07-01 14:47:09 +0100 | [diff] [blame] | 92 | <dependency> |
sourabh_sourabh | 3ad3931 | 2024-05-07 12:31:44 +0100 | [diff] [blame] | 93 | <groupId>org.springframework.boot</groupId> |
| 94 | <artifactId>spring-boot-starter-webflux</artifactId> |
mpriyank | 0238998 | 2022-07-01 14:47:09 +0100 | [diff] [blame] | 95 | </dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 96 | <!-- T E S T - D E P E N D E N C I E S --> |
| 97 | <dependency> |
raviteja.karumuri | e9ac24f | 2023-04-13 23:44:41 +0100 | [diff] [blame] | 98 | <groupId>org.springframework.boot</groupId> |
| 99 | <artifactId>spring-boot-starter-test</artifactId> |
| 100 | <scope>test</scope> |
raviteja.karumuri | e9ac24f | 2023-04-13 23:44:41 +0100 | [diff] [blame] | 101 | </dependency> |
| 102 | <dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 103 | <groupId>org.spockframework</groupId> |
| 104 | <artifactId>spock-core</artifactId> |
| 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.spockframework</groupId> |
| 109 | <artifactId>spock-spring</artifactId> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
sourabh_sourabh | dd4bcaa | 2023-06-19 17:35:15 +0100 | [diff] [blame] | 113 | <groupId>org.springframework.kafka</groupId> |
| 114 | <artifactId>spring-kafka-test</artifactId> |
| 115 | <scope>test</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 118 | <groupId>org.testcontainers</groupId> |
| 119 | <artifactId>kafka</artifactId> |
| 120 | <scope>test</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.testcontainers</groupId> |
| 124 | <artifactId>spock</artifactId> |
| 125 | <scope>test</scope> |
| 126 | </dependency> |
david.mcweeney | 2293486 | 2024-04-25 14:37:33 +0100 | [diff] [blame] | 127 | <dependency> |
| 128 | <groupId>org.springframework.boot</groupId> |
| 129 | <artifactId>spring-boot-actuator-autoconfigure</artifactId> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>jakarta.servlet</groupId> |
| 133 | <artifactId>jakarta.servlet-api</artifactId> |
| 134 | </dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 135 | </dependencies> |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 136 | </project> |