lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (c) 2023 Nordix Foundation |
| 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> |
seanbeirne | f8e980a | 2023-01-27 18:09:33 +0000 | [diff] [blame] | 26 | <version>3.2.2-SNAPSHOT</version> |
lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 27 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <modelVersion>4.0.0</modelVersion> |
| 31 | |
| 32 | <artifactId>integration-test</artifactId> |
| 33 | |
lukegleeson | dfd2665 | 2023-01-26 17:17:56 +0000 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.cps</groupId> |
| 37 | <artifactId>cps-ri</artifactId> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.onap.cps</groupId> |
| 41 | <artifactId>cps-service</artifactId> |
| 42 | </dependency> |
| 43 | <!-- T E S T D E P E N D E N C I E S --> |
| 44 | <dependency> |
| 45 | <groupId>org.codehaus.groovy</groupId> |
| 46 | <artifactId>groovy</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.spockframework</groupId> |
| 51 | <artifactId>spock-core</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.spockframework</groupId> |
| 56 | <artifactId>spock-spring</artifactId> |
| 57 | <scope>test</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.springframework.boot</groupId> |
| 61 | <artifactId>spring-boot-starter-test</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.testcontainers</groupId> |
| 66 | <artifactId>postgresql</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.testcontainers</groupId> |
| 71 | <artifactId>spock</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.springframework.kafka</groupId> |
| 76 | <artifactId>spring-kafka-test</artifactId> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | </dependencies> |
| 80 | |
lukegleeson | 665e224 | 2023-01-11 09:45:53 +0000 | [diff] [blame] | 81 | </project> |