Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 4 | <modelVersion>4.0.0</modelVersion>
|
| 5 | <parent>
|
| 6 | <groupId>org.onap.cps</groupId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 7 | <artifactId>cps-parent</artifactId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 8 | <version>0.0.1-SNAPSHOT</version>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 9 | <relativePath>../cps-parent/pom.xml</relativePath>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 10 | </parent>
|
Claudio David Gasparini | dc6f81c | 2021-01-13 17:42:25 +0100 | [diff] [blame] | 11 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 12 | <artifactId>cps-ri</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 13 |
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 14 | <dependencies>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 15 | <dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 16 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 17 | <artifactId>cps-service</artifactId>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 18 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 19 | <dependency>
|
| 20 | <groupId>org.springframework.boot</groupId>
|
| 21 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
| 22 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 23 | <dependency>
|
| 24 | <groupId>org.springframework.boot</groupId>
|
| 25 | <artifactId>spring-boot-starter-validation</artifactId>
|
| 26 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 27 | <dependency>
|
| 28 | <groupId>org.postgresql</groupId>
|
| 29 | <artifactId>postgresql</artifactId>
|
| 30 | </dependency>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 31 | <!-- Add Hibernate support for Postgres datatype JSONB -->
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 32 | <dependency>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 33 | <groupId>com.vladmihalcea</groupId>
|
| 34 | <artifactId>hibernate-types-52</artifactId>
|
Rishi Chail | 6f523db | 2020-10-21 12:04:16 +0100 | [diff] [blame] | 35 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 36 | <dependency>
|
| 37 | <groupId>org.projectlombok</groupId>
|
| 38 | <artifactId>lombok</artifactId>
|
| 39 | </dependency>
|
puthuparambil.aditya | e182a6b | 2020-12-10 16:49:53 +0000 | [diff] [blame] | 40 | <dependency>
|
| 41 | <groupId>org.modelmapper</groupId>
|
| 42 | <artifactId>modelmapper</artifactId>
|
| 43 | </dependency>
|
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 44 | <!-- Test dependencies -->
|
| 45 | <dependency>
|
| 46 | <groupId>org.springframework.boot</groupId>
|
| 47 | <artifactId>spring-boot-starter-test</artifactId>
|
| 48 | <scope>test</scope>
|
| 49 | </dependency>
|
| 50 | <dependency>
|
| 51 | <groupId>org.testcontainers</groupId>
|
| 52 | <artifactId>postgresql</artifactId>
|
| 53 | <scope>test</scope>
|
| 54 | </dependency>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 55 | </dependencies>
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 56 | </project>
|