blob: 1805986c7ba2a421a667efd9524479c9076e0d3b [file] [log] [blame]
Rishi Chailb220d742020-09-16 15:23:53 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
Rishi Chail8af414a2020-10-08 12:33:33 +01002 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 Gasparini70c17022020-10-26 10:12:10 +01007 <artifactId>cps-parent</artifactId>
Rishi Chail8af414a2020-10-08 12:33:33 +01008 <version>0.0.1-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +01009 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chail8af414a2020-10-08 12:33:33 +010010 </parent>
Claudio David Gasparinidc6f81c2021-01-13 17:42:25 +010011
Rishi Chail8af414a2020-10-08 12:33:33 +010012 <artifactId>cps-ri</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010013
Rishi Chail8af414a2020-10-08 12:33:33 +010014 <dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010015 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010016 <groupId>${project.groupId}</groupId>
Rishi Chail8af414a2020-10-08 12:33:33 +010017 <artifactId>cps-service</artifactId>
Rishi Chail8af414a2020-10-08 12:33:33 +010018 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010019 <dependency>
20 <groupId>org.springframework.boot</groupId>
21 <artifactId>spring-boot-starter-data-jpa</artifactId>
22 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010023 <dependency>
24 <groupId>org.springframework.boot</groupId>
25 <artifactId>spring-boot-starter-validation</artifactId>
26 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010027 <dependency>
28 <groupId>org.postgresql</groupId>
29 <artifactId>postgresql</artifactId>
30 </dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010031 <!-- Add Hibernate support for Postgres datatype JSONB -->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010032 <dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010033 <groupId>com.vladmihalcea</groupId>
34 <artifactId>hibernate-types-52</artifactId>
Rishi Chail6f523db2020-10-21 12:04:16 +010035 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010036 <dependency>
37 <groupId>org.projectlombok</groupId>
38 <artifactId>lombok</artifactId>
39 </dependency>
puthuparambil.adityae182a6b2020-12-10 16:49:53 +000040 <dependency>
41 <groupId>org.modelmapper</groupId>
42 <artifactId>modelmapper</artifactId>
43 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020044 <!-- 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 Chail8af414a2020-10-08 12:33:33 +010055 </dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010056</project>