tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
sourabh_sourabh | 05e7b8a | 2022-01-18 21:57:46 +0530 | [diff] [blame] | 4 | Copyright (C) 2021-2022 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> |
seanbeirne | f0f4fd8 | 2023-03-07 13:42:04 +0000 | [diff] [blame] | 30 | <version>3.2.4-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> |
| 37 | <minimum-coverage>0.96</minimum-coverage> |
| 38 | </properties> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>${project.groupId}</groupId> |
| 42 | <artifactId>cps-service</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 45 | <groupId>org.onap.cps</groupId> |
| 46 | <artifactId>cps-ncmp-events</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
lukegleeson | 82a550f | 2022-07-11 10:55:53 +0100 | [diff] [blame] | 49 | <groupId>${project.groupId}</groupId> |
| 50 | <artifactId>cps-path-parser</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-web</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.mapstruct</groupId> |
| 58 | <artifactId>mapstruct</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.mapstruct</groupId> |
| 62 | <artifactId>mapstruct-processor</artifactId> |
| 63 | </dependency> |
mpriyank | 0238998 | 2022-07-01 14:47:09 +0100 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>com.hazelcast</groupId> |
| 66 | <artifactId>hazelcast-spring</artifactId> |
| 67 | </dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 68 | <!-- T E S T - D E P E N D E N C I E S --> |
| 69 | <dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 70 | <groupId>org.spockframework</groupId> |
| 71 | <artifactId>spock-core</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.spockframework</groupId> |
| 76 | <artifactId>spock-spring</artifactId> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 80 | <groupId>org.testcontainers</groupId> |
| 81 | <artifactId>kafka</artifactId> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.testcontainers</groupId> |
| 86 | <artifactId>spock</artifactId> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 90 | <groupId>org.springframework.boot</groupId> |
| 91 | <artifactId>spring-boot-starter-test</artifactId> |
| 92 | <scope>test</scope> |
| 93 | <exclusions> |
| 94 | <exclusion> |
| 95 | <groupId>org.junit.vintage</groupId> |
| 96 | <artifactId>junit-vintage-engine</artifactId> |
| 97 | </exclusion> |
| 98 | </exclusions> |
| 99 | </dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 100 | </dependencies> |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 101 | </project> |