blob: fe061eaed05ccd1736d64aa8237f899c4db910e9 [file] [log] [blame]
tragait34a94b92021-03-30 12:02:27 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
sourabh_sourabh05e7b8a2022-01-18 21:57:46 +05304 Copyright (C) 2021-2022 Nordix Foundation
lukegleeson15b93e72021-07-07 15:25:30 +01005 Modifications Copyright (C) 2021 Pantheon.tech
tragait34a94b92021-03-30 12:02:27 +01006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
lukegleeson15b93e72021-07-07 15:25:30 +010018
19 SPDX-License-Identifier: Apache-2.0
tragait34a94b92021-03-30 12:02:27 +010020 ============LICENSE_END=========================================================
21-->
22<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 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 +010025 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.cps</groupId>
28 <artifactId>cps-parent</artifactId>
puthuparambil.adityacc17ae52022-02-25 13:24:03 +000029 <version>3.0.0-SNAPSHOT</version>
ToineSiebelink73001f62021-09-17 15:07:38 +010030 <relativePath>../cps-parent/pom.xml</relativePath>
31 </parent>
tragait34a94b92021-03-30 12:02:27 +010032
ToineSiebelink73001f62021-09-17 15:07:38 +010033 <artifactId>cps-ncmp-service</artifactId>
tragait34a94b92021-03-30 12:02:27 +010034
ToineSiebelink73001f62021-09-17 15:07:38 +010035 <dependencies>
36 <dependency>
37 <groupId>${project.groupId}</groupId>
38 <artifactId>cps-service</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.spockframework</groupId>
42 <artifactId>spock-core</artifactId>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.spockframework</groupId>
47 <artifactId>spock-spring</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-test</artifactId>
53 <scope>test</scope>
54 <exclusions>
55 <exclusion>
56 <groupId>org.junit.vintage</groupId>
57 <artifactId>junit-vintage-engine</artifactId>
58 </exclusion>
59 </exclusions>
60 </dependency>
61 <dependency>
62 <groupId>org.springframework</groupId>
63 <artifactId>spring-web</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.springframework.boot</groupId>
67 <artifactId>spring-boot-starter-validation</artifactId>
68 </dependency>
69 </dependencies>
lukegleeson15b93e72021-07-07 15:25:30 +010070</project>