blob: 531d353b0c5868087518afad61fa0347b45960d9 [file] [log] [blame]
lukegleeson665e2242023-01-11 09:45:53 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
danielhanrahan7a35d922024-01-29 14:28:06 +00004 Copyright (c) 2023-2024 Nordix Foundation
lukegleeson665e2242023-01-11 09:45:53 +00005 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ============LICENSE_END=========================================================
18-->
19
20<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <parent>
24 <groupId>org.onap.cps</groupId>
25 <artifactId>cps-parent</artifactId>
mpriyank08bcac32024-12-02 14:26:03 +000026 <version>3.6.0-SNAPSHOT</version>
lukegleeson665e2242023-01-11 09:45:53 +000027 <relativePath>../cps-parent/pom.xml</relativePath>
28 </parent>
lukegleeson665e2242023-01-11 09:45:53 +000029 <modelVersion>4.0.0</modelVersion>
30
31 <artifactId>integration-test</artifactId>
32
lukegleesondfd26652023-01-26 17:17:56 +000033 <dependencies>
lukegleesondfd26652023-01-26 17:17:56 +000034 <!-- T E S T D E P E N D E N C I E S -->
35 <dependency>
ToineSiebelink0133eb02023-02-28 18:12:51 +000036 <groupId>${project.groupId}</groupId>
37 <artifactId>cps-rest</artifactId>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>${project.groupId}</groupId>
danielhanrahanfc00c0c2024-02-13 11:12:29 +000042 <artifactId>cps-ncmp-rest</artifactId>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
46 <groupId>${project.groupId}</groupId>
ToineSiebelink0133eb02023-02-28 18:12:51 +000047 <artifactId>cps-ri</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>${project.groupId}</groupId>
52 <artifactId>cps-service</artifactId>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
danielhanrahanfc00c0c2024-02-13 11:12:29 +000056 <groupId>${project.groupId}</groupId>
57 <artifactId>cps-ncmp-service</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
sourabh_sourabh7662e812024-05-02 10:26:16 +010061 <groupId>org.codehaus.groovy</groupId>
62 <artifactId>groovy</artifactId>
63 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.testcontainers</groupId>
67 <artifactId>kafka</artifactId>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>com.squareup.okhttp3</groupId>
72 <artifactId>mockwebserver</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.testcontainers</groupId>
77 <artifactId>postgresql</artifactId>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
lukegleesondfd26652023-01-26 17:17:56 +000081 <groupId>org.spockframework</groupId>
82 <artifactId>spock-core</artifactId>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
halil.cakal00245ee2024-03-22 11:46:03 +000086 <groupId>org.springframework</groupId>
87 <artifactId>spring-web</artifactId>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
lukegleesondfd26652023-01-26 17:17:56 +000091 <groupId>org.spockframework</groupId>
92 <artifactId>spock-spring</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-test</artifactId>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
halil.cakal00245ee2024-03-22 11:46:03 +0000101 <groupId>org.springframework.kafka</groupId>
102 <artifactId>spring-kafka-test</artifactId>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
lukegleesondfd26652023-01-26 17:17:56 +0000106 <groupId>org.testcontainers</groupId>
lukegleesondfd26652023-01-26 17:17:56 +0000107 <artifactId>spock</artifactId>
108 <scope>test</scope>
109 </dependency>
leventecsanyib33ea922024-06-21 10:50:06 +0200110 <dependency>
111 <groupId>org.codehaus.groovy</groupId>
112 <artifactId>groovy-json</artifactId>
113 <scope>test</scope>
114 </dependency>
lukegleesondfd26652023-01-26 17:17:56 +0000115 </dependencies>
lukegleeson665e2242023-01-11 09:45:53 +0000116</project>