blob: 2c28212afa711570aad69f8fa0ebf3580cc7729a [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>
11 <artifactId>cps-ri</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010012
Rishi Chail8af414a2020-10-08 12:33:33 +010013 <dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010014 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010015 <groupId>${project.groupId}</groupId>
Rishi Chail8af414a2020-10-08 12:33:33 +010016 <artifactId>cps-service</artifactId>
Rishi Chail8af414a2020-10-08 12:33:33 +010017 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010018 <dependency>
19 <groupId>org.springframework.boot</groupId>
20 <artifactId>spring-boot-starter-data-jpa</artifactId>
21 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010022 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter-validation</artifactId>
25 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010026 <dependency>
27 <groupId>org.postgresql</groupId>
28 <artifactId>postgresql</artifactId>
29 </dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010030 <!-- Add Hibernate support for Postgres datatype JSONB -->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010031 <dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010032 <groupId>com.vladmihalcea</groupId>
33 <artifactId>hibernate-types-52</artifactId>
Rishi Chail6f523db2020-10-21 12:04:16 +010034 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010035 <dependency>
36 <groupId>org.projectlombok</groupId>
37 <artifactId>lombok</artifactId>
38 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010039 </dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010040</project>