shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START=======================================================
|
| 4 | Modification Copyright (C) 2021 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 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 23 | <modelVersion>4.0.0</modelVersion>
|
| 24 | <parent>
|
| 25 | <groupId>org.onap.cps</groupId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 26 | <artifactId>cps-parent</artifactId>
|
Rishi.Chail | dbffd91 | 2021-03-05 12:32:33 +0000 | [diff] [blame] | 27 | <version>1.1.0-SNAPSHOT</version>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 28 | <relativePath>../cps-parent/pom.xml</relativePath>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 29 | </parent>
|
Claudio David Gasparini | dc6f81c | 2021-01-13 17:42:25 +0100 | [diff] [blame] | 30 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 31 | <artifactId>cps-ri</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 32 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 33 | <dependencies>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 34 | <dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 35 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 36 | <artifactId>cps-service</artifactId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 37 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 38 | <dependency>
|
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 39 | <groupId>${project.groupId}</groupId>
|
| 40 | <artifactId>cps-path-parser</artifactId>
|
| 41 | <version>${project.version}</version>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 44 | <groupId>org.springframework.boot</groupId>
|
| 45 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
| 46 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 47 | <dependency>
|
| 48 | <groupId>org.springframework.boot</groupId>
|
| 49 | <artifactId>spring-boot-starter-validation</artifactId>
|
| 50 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 51 | <dependency>
|
| 52 | <groupId>org.postgresql</groupId>
|
| 53 | <artifactId>postgresql</artifactId>
|
| 54 | </dependency>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 55 | <!-- Add Hibernate support for Postgres datatype JSONB -->
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 56 | <dependency>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 57 | <groupId>com.vladmihalcea</groupId>
|
| 58 | <artifactId>hibernate-types-52</artifactId>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 59 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 60 | <dependency>
|
| 61 | <groupId>org.projectlombok</groupId>
|
| 62 | <artifactId>lombok</artifactId>
|
| 63 | </dependency>
|
puthuparambil.aditya | e182a6b | 2020-12-10 16:49:53 +0000 | [diff] [blame] | 64 | <dependency>
|
| 65 | <groupId>org.modelmapper</groupId>
|
| 66 | <artifactId>modelmapper</artifactId>
|
| 67 | </dependency>
|
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 68 | <dependency>
|
| 69 | <groupId>org.liquibase</groupId>
|
| 70 | <artifactId>liquibase-core</artifactId>
|
| 71 | </dependency>
|
puthuparambil.aditya | 2555da9 | 2021-03-10 11:55:33 +0000 | [diff] [blame] | 72 | <dependency>
|
| 73 | <groupId>commons-codec</groupId>
|
| 74 | <artifactId>commons-codec</artifactId>
|
| 75 | </dependency>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 76 | <!-- T E S T D E P E N D E N C I E S -->
|
| 77 | <dependency>
|
| 78 | <groupId>org.codehaus.groovy</groupId>
|
| 79 | <artifactId>groovy</artifactId>
|
| 80 | <scope>test</scope>
|
| 81 | </dependency>
|
| 82 | <dependency>
|
| 83 | <groupId>org.spockframework</groupId>
|
| 84 | <artifactId>spock-core</artifactId>
|
| 85 | <scope>test</scope>
|
| 86 | </dependency>
|
| 87 | <dependency>
|
| 88 | <groupId>org.spockframework</groupId>
|
| 89 | <artifactId>spock-spring</artifactId>
|
| 90 | <scope>test</scope>
|
| 91 | </dependency>
|
| 92 | <dependency>
|
| 93 | <groupId>cglib</groupId>
|
| 94 | <artifactId>cglib-nodep</artifactId>
|
| 95 | <scope>test</scope>
|
| 96 | </dependency>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 97 | <dependency>
|
| 98 | <groupId>org.springframework.boot</groupId>
|
| 99 | <artifactId>spring-boot-starter-test</artifactId>
|
| 100 | <scope>test</scope>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 101 | <exclusions>
|
| 102 | <exclusion>
|
| 103 | <groupId>org.junit.vintage</groupId>
|
| 104 | <artifactId>junit-vintage-engine</artifactId>
|
| 105 | </exclusion>
|
| 106 | </exclusions>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 107 | </dependency>
|
| 108 | <dependency>
|
| 109 | <groupId>org.testcontainers</groupId>
|
| 110 | <artifactId>postgresql</artifactId>
|
| 111 | <scope>test</scope>
|
| 112 | </dependency>
|
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 113 | <dependency>
|
| 114 | <groupId>org.testcontainers</groupId>
|
| 115 | <artifactId>spock</artifactId>
|
| 116 | <scope>test</scope>
|
| 117 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 118 | </dependencies>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 119 | </project>
|