shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START=======================================================
|
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 4 | Copyright (C) 2020-2021 Pantheon.tech
|
| 5 | Modifications Copyright (C) 2020-2021 Bell Canada
|
lukegleeson | d5bda88 | 2022-03-02 14:32:47 +0000 | [diff] [blame^] | 6 | Modifications Copyright (C) 2020-2022 Nordix Foundation
|
shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +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.
|
| 19 | ============LICENSE_END=========================================================
|
| 20 | -->
|
| 21 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 25 | <modelVersion>4.0.0</modelVersion>
|
| 26 | <parent>
|
| 27 | <groupId>org.onap.cps</groupId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 28 | <artifactId>cps-parent</artifactId>
|
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 29 | <version>3.0.0-SNAPSHOT</version>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 30 | <relativePath>../cps-parent/pom.xml</relativePath>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 31 | </parent>
|
Claudio David Gasparini | dc6f81c | 2021-01-13 17:42:25 +0100 | [diff] [blame] | 32 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 33 | <artifactId>cps-ri</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 34 |
|
JosephKeenan | 9e3fc49 | 2021-07-29 16:10:07 +0100 | [diff] [blame] | 35 | <repositories>
|
| 36 | <repository>
|
| 37 | <id>nordix-liquibase-repo</id>
|
| 38 | <name>liquibase</name>
|
| 39 | <url>https://artifactory.nordix.org/artifactory/liquibase</url>
|
| 40 | </repository>
|
| 41 | </repositories>
|
| 42 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 43 | <dependencies>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 44 | <dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 45 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 46 | <artifactId>cps-service</artifactId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 47 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 48 | <dependency>
|
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 49 | <groupId>${project.groupId}</groupId>
|
| 50 | <artifactId>cps-path-parser</artifactId>
|
| 51 | <version>${project.version}</version>
|
| 52 | </dependency>
|
| 53 | <dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 54 | <groupId>org.springframework.boot</groupId>
|
| 55 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
| 56 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 57 | <dependency>
|
| 58 | <groupId>org.springframework.boot</groupId>
|
| 59 | <artifactId>spring-boot-starter-validation</artifactId>
|
| 60 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 61 | <dependency>
|
Bruno Sakoto | 9be188d | 2021-06-16 11:47:54 -0400 | [diff] [blame] | 62 | <groupId>org.springframework.retry</groupId>
|
| 63 | <artifactId>spring-retry</artifactId>
|
| 64 | </dependency>
|
| 65 | <dependency>
|
| 66 | <groupId>org.springframework</groupId>
|
| 67 | <artifactId>spring-aspects</artifactId>
|
| 68 | </dependency>
|
| 69 | <dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 70 | <groupId>org.postgresql</groupId>
|
| 71 | <artifactId>postgresql</artifactId>
|
| 72 | </dependency>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 73 | <!-- Add Hibernate support for Postgres datatype JSONB -->
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 74 | <dependency>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 75 | <groupId>com.vladmihalcea</groupId>
|
| 76 | <artifactId>hibernate-types-52</artifactId>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 77 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 78 | <dependency>
|
| 79 | <groupId>org.projectlombok</groupId>
|
| 80 | <artifactId>lombok</artifactId>
|
| 81 | </dependency>
|
puthuparambil.aditya | e182a6b | 2020-12-10 16:49:53 +0000 | [diff] [blame] | 82 | <dependency>
|
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 83 | <groupId>org.liquibase</groupId>
|
| 84 | <artifactId>liquibase-core</artifactId>
|
JosephKeenan | 9e3fc49 | 2021-07-29 16:10:07 +0100 | [diff] [blame] | 85 | <version>4.4.2-nordix</version>
|
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 86 | </dependency>
|
puthuparambil.aditya | 2555da9 | 2021-03-10 11:55:33 +0000 | [diff] [blame] | 87 | <dependency>
|
| 88 | <groupId>commons-codec</groupId>
|
| 89 | <artifactId>commons-codec</artifactId>
|
| 90 | </dependency>
|
Bruno Sakoto | 9be188d | 2021-06-16 11:47:54 -0400 | [diff] [blame] | 91 | <dependency>
|
| 92 | <groupId>org.apache.commons</groupId>
|
| 93 | <artifactId>commons-lang3</artifactId>
|
| 94 | </dependency>
|
lukegleeson | 008abae | 2021-08-30 10:24:30 +0100 | [diff] [blame] | 95 | <dependency>
|
| 96 | <groupId>com.fasterxml.jackson.core</groupId>
|
| 97 | <artifactId>jackson-databind</artifactId>
|
| 98 | </dependency>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 99 | <!-- T E S T D E P E N D E N C I E S -->
|
| 100 | <dependency>
|
| 101 | <groupId>org.codehaus.groovy</groupId>
|
| 102 | <artifactId>groovy</artifactId>
|
| 103 | <scope>test</scope>
|
| 104 | </dependency>
|
| 105 | <dependency>
|
| 106 | <groupId>org.spockframework</groupId>
|
| 107 | <artifactId>spock-core</artifactId>
|
| 108 | <scope>test</scope>
|
| 109 | </dependency>
|
| 110 | <dependency>
|
| 111 | <groupId>org.spockframework</groupId>
|
| 112 | <artifactId>spock-spring</artifactId>
|
| 113 | <scope>test</scope>
|
| 114 | </dependency>
|
| 115 | <dependency>
|
| 116 | <groupId>cglib</groupId>
|
| 117 | <artifactId>cglib-nodep</artifactId>
|
| 118 | <scope>test</scope>
|
| 119 | </dependency>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 120 | <dependency>
|
| 121 | <groupId>org.springframework.boot</groupId>
|
| 122 | <artifactId>spring-boot-starter-test</artifactId>
|
| 123 | <scope>test</scope>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 124 | <exclusions>
|
| 125 | <exclusion>
|
| 126 | <groupId>org.junit.vintage</groupId>
|
| 127 | <artifactId>junit-vintage-engine</artifactId>
|
| 128 | </exclusion>
|
| 129 | </exclusions>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 130 | </dependency>
|
| 131 | <dependency>
|
| 132 | <groupId>org.testcontainers</groupId>
|
| 133 | <artifactId>postgresql</artifactId>
|
| 134 | <scope>test</scope>
|
| 135 | </dependency>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 136 | <dependency>
|
| 137 | <groupId>org.testcontainers</groupId>
|
| 138 | <artifactId>spock</artifactId>
|
| 139 | <scope>test</scope>
|
| 140 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 141 | </dependencies>
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 142 |
|
lukegleeson | 008abae | 2021-08-30 10:24:30 +0100 | [diff] [blame] | 143 |
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 144 | <build>
|
| 145 | <plugins>
|
| 146 | <plugin>
|
| 147 | <groupId>org.apache.maven.plugins</groupId>
|
| 148 | <artifactId>maven-surefire-plugin</artifactId>
|
| 149 | <configuration>
|
| 150 | <environmentVariables>
|
| 151 | <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/library/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>
|
| 152 | </environmentVariables>
|
| 153 | </configuration>
|
| 154 | </plugin>
|
| 155 | </plugins>
|
| 156 | </build>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 157 | </project>
|