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