lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
danielhanrahan | 7a35d92 | 2024-01-29 14:28:06 +0000 | [diff] [blame] | 4 | Copyright (c) 2023-2024 Nordix Foundation |
lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 5 | ================================================================================ |
| 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> |
mpriyank | 08bcac3 | 2024-12-02 14:26:03 +0000 | [diff] [blame] | 26 | <version>3.6.0-SNAPSHOT</version> |
lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 27 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 28 | </parent> |
lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | |
| 31 | <artifactId>integration-test</artifactId> |
| 32 | |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 33 | <dependencies> |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 34 | <!-- T E S T D E P E N D E N C I E S --> |
| 35 | <dependency> |
ToineSiebelink | 0133eb0 | 2023-02-28 18:12:51 +0000 | [diff] [blame] | 36 | <groupId>${project.groupId}</groupId> |
| 37 | <artifactId>cps-rest</artifactId> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>${project.groupId}</groupId> |
danielhanrahan | fc00c0c | 2024-02-13 11:12:29 +0000 | [diff] [blame] | 42 | <artifactId>cps-ncmp-rest</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>${project.groupId}</groupId> |
ToineSiebelink | 0133eb0 | 2023-02-28 18:12:51 +0000 | [diff] [blame] | 47 | <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> |
danielhanrahan | fc00c0c | 2024-02-13 11:12:29 +0000 | [diff] [blame] | 56 | <groupId>${project.groupId}</groupId> |
| 57 | <artifactId>cps-ncmp-service</artifactId> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
sourabh_sourabh | 7662e81 | 2024-05-02 10:26:16 +0100 | [diff] [blame] | 61 | <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> |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 81 | <groupId>org.spockframework</groupId> |
| 82 | <artifactId>spock-core</artifactId> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
halil.cakal | 00245ee | 2024-03-22 11:46:03 +0000 | [diff] [blame] | 86 | <groupId>org.springframework</groupId> |
| 87 | <artifactId>spring-web</artifactId> |
| 88 | <scope>test</scope> |
| 89 | </dependency> |
| 90 | <dependency> |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 91 | <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.cakal | 00245ee | 2024-03-22 11:46:03 +0000 | [diff] [blame] | 101 | <groupId>org.springframework.kafka</groupId> |
| 102 | <artifactId>spring-kafka-test</artifactId> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 106 | <groupId>org.testcontainers</groupId> |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 107 | <artifactId>spock</artifactId> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
leventecsanyi | b33ea92 | 2024-06-21 10:50:06 +0200 | [diff] [blame] | 110 | <dependency> |
| 111 | <groupId>org.codehaus.groovy</groupId> |
| 112 | <artifactId>groovy-json</artifactId> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 115 | </dependencies> |
lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 116 | </project> |