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 | 7e243c9 | 2023-04-20 15:32:12 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2020-2023 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>
|
lukegleeson | 7e243c9 | 2023-04-20 15:32:12 +0100 | [diff] [blame] | 29 | <version>3.3.1-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 |
|
danielhanrahan | 96a2f7b | 2023-04-04 19:00:44 +0100 | [diff] [blame] | 35 | <properties>
|
Rudrangi Anupriya | c4621cb | 2023-04-13 22:49:06 +0530 | [diff] [blame] | 36 | <minimum-coverage>0.80</minimum-coverage>
|
danielhanrahan | 96a2f7b | 2023-04-04 19:00:44 +0100 | [diff] [blame] | 37 | </properties>
|
| 38 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 39 | <dependencies>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 40 | <dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 41 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 42 | <artifactId>cps-service</artifactId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 43 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 44 | <dependency>
|
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 45 | <groupId>${project.groupId}</groupId>
|
| 46 | <artifactId>cps-path-parser</artifactId>
|
| 47 | <version>${project.version}</version>
|
| 48 | </dependency>
|
| 49 | <dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 50 | <groupId>org.springframework.boot</groupId>
|
| 51 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
| 52 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 53 | <dependency>
|
| 54 | <groupId>org.springframework.boot</groupId>
|
| 55 | <artifactId>spring-boot-starter-validation</artifactId>
|
| 56 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 57 | <dependency>
|
Bruno Sakoto | 9be188d | 2021-06-16 11:47:54 -0400 | [diff] [blame] | 58 | <groupId>org.springframework.retry</groupId>
|
| 59 | <artifactId>spring-retry</artifactId>
|
| 60 | </dependency>
|
| 61 | <dependency>
|
| 62 | <groupId>org.springframework</groupId>
|
| 63 | <artifactId>spring-aspects</artifactId>
|
| 64 | </dependency>
|
| 65 | <dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 66 | <groupId>org.postgresql</groupId>
|
| 67 | <artifactId>postgresql</artifactId>
|
leventecsanyi | 2022092 | 2022-12-01 17:20:11 +0100 | [diff] [blame] | 68 | <version>${postgres.version}</version>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 69 | </dependency>
|
danielhanrahan | ec0ba9d | 2023-04-20 12:26:47 +0100 | [diff] [blame] | 70 | <!-- Add Hibernate support for Postgres datatype JSONB and Postgres arrays -->
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 71 | <dependency>
|
danielhanrahan | ec0ba9d | 2023-04-20 12:26:47 +0100 | [diff] [blame] | 72 | <groupId>io.hypersistence</groupId>
|
| 73 | <artifactId>hypersistence-utils-hibernate-52</artifactId>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 74 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 75 | <dependency>
|
| 76 | <groupId>org.projectlombok</groupId>
|
| 77 | <artifactId>lombok</artifactId>
|
| 78 | </dependency>
|
puthuparambil.aditya | e182a6b | 2020-12-10 16:49:53 +0000 | [diff] [blame] | 79 | <dependency>
|
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 80 | <groupId>org.liquibase</groupId>
|
| 81 | <artifactId>liquibase-core</artifactId>
|
| 82 | </dependency>
|
puthuparambil.aditya | 2555da9 | 2021-03-10 11:55:33 +0000 | [diff] [blame] | 83 | <dependency>
|
| 84 | <groupId>commons-codec</groupId>
|
| 85 | <artifactId>commons-codec</artifactId>
|
| 86 | </dependency>
|
Bruno Sakoto | 9be188d | 2021-06-16 11:47:54 -0400 | [diff] [blame] | 87 | <dependency>
|
| 88 | <groupId>org.apache.commons</groupId>
|
| 89 | <artifactId>commons-lang3</artifactId>
|
| 90 | </dependency>
|
lukegleeson | 008abae | 2021-08-30 10:24:30 +0100 | [diff] [blame] | 91 | <dependency>
|
| 92 | <groupId>com.fasterxml.jackson.core</groupId>
|
| 93 | <artifactId>jackson-databind</artifactId>
|
| 94 | </dependency>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 95 | <!-- T E S T D E P E N D E N C I E S -->
|
| 96 | <dependency>
|
| 97 | <groupId>org.codehaus.groovy</groupId>
|
| 98 | <artifactId>groovy</artifactId>
|
| 99 | <scope>test</scope>
|
| 100 | </dependency>
|
| 101 | <dependency>
|
| 102 | <groupId>org.spockframework</groupId>
|
| 103 | <artifactId>spock-core</artifactId>
|
| 104 | <scope>test</scope>
|
| 105 | </dependency>
|
| 106 | <dependency>
|
| 107 | <groupId>org.spockframework</groupId>
|
| 108 | <artifactId>spock-spring</artifactId>
|
| 109 | <scope>test</scope>
|
| 110 | </dependency>
|
| 111 | <dependency>
|
| 112 | <groupId>cglib</groupId>
|
| 113 | <artifactId>cglib-nodep</artifactId>
|
| 114 | <scope>test</scope>
|
| 115 | </dependency>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 116 | <dependency>
|
| 117 | <groupId>org.springframework.boot</groupId>
|
| 118 | <artifactId>spring-boot-starter-test</artifactId>
|
| 119 | <scope>test</scope>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 120 | <exclusions>
|
| 121 | <exclusion>
|
| 122 | <groupId>org.junit.vintage</groupId>
|
| 123 | <artifactId>junit-vintage-engine</artifactId>
|
| 124 | </exclusion>
|
| 125 | </exclusions>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 126 | </dependency>
|
| 127 | <dependency>
|
| 128 | <groupId>org.testcontainers</groupId>
|
| 129 | <artifactId>postgresql</artifactId>
|
| 130 | <scope>test</scope>
|
| 131 | </dependency>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 132 | <dependency>
|
| 133 | <groupId>org.testcontainers</groupId>
|
| 134 | <artifactId>spock</artifactId>
|
| 135 | <scope>test</scope>
|
| 136 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 137 | </dependencies>
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 138 |
|
seanbeirne | 3752811 | 2022-10-27 16:33:04 +0100 | [diff] [blame] | 139 | <profiles>
|
| 140 | <profile>
|
| 141 | <id>default</id>
|
| 142 | <activation>
|
| 143 | <activeByDefault>true</activeByDefault>
|
| 144 | </activation>
|
| 145 | <build>
|
| 146 | <plugins>
|
| 147 | <plugin>
|
| 148 | <groupId>org.apache.maven.plugins</groupId>
|
| 149 | <artifactId>maven-surefire-plugin</artifactId>
|
| 150 | <configuration>
|
| 151 | <excludes>
|
ToineSiebelink | 83e5055 | 2022-12-23 10:11:38 +0000 | [diff] [blame] | 152 | <exclude>%regex[.*PerfTest.*]</exclude>
|
seanbeirne | 3752811 | 2022-10-27 16:33:04 +0100 | [diff] [blame] | 153 | </excludes>
|
| 154 | </configuration>
|
| 155 | </plugin>
|
| 156 | </plugins>
|
| 157 | </build>
|
| 158 | </profile>
|
| 159 | <profile>
|
| 160 | <id>include-performance</id>
|
| 161 | </profile>
|
| 162 | </profiles>
|
lukegleeson | 008abae | 2021-08-30 10:24:30 +0100 | [diff] [blame] | 163 |
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 164 | <build>
|
| 165 | <plugins>
|
| 166 | <plugin>
|
| 167 | <groupId>org.apache.maven.plugins</groupId>
|
| 168 | <artifactId>maven-surefire-plugin</artifactId>
|
| 169 | <configuration>
|
| 170 | <environmentVariables>
|
| 171 | <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/library/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>
|
| 172 | </environmentVariables>
|
| 173 | </configuration>
|
| 174 | </plugin>
|
| 175 | </plugins>
|
| 176 | </build>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 177 | </project>
|