blob: c47f30ada320f1fed0fa5ee9e76d16863d30ac2e [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>
Bruno Sakoto202e1942021-04-08 15:23:08 -04008 <version>1.0.2-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>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000044 <dependency>
45 <groupId>org.liquibase</groupId>
46 <artifactId>liquibase-core</artifactId>
47 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000048 <!-- T E S T D E P E N D E N C I E S -->
49 <dependency>
50 <groupId>org.codehaus.groovy</groupId>
51 <artifactId>groovy</artifactId>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.spockframework</groupId>
56 <artifactId>spock-core</artifactId>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.spockframework</groupId>
61 <artifactId>spock-spring</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>cglib</groupId>
66 <artifactId>cglib-nodep</artifactId>
67 <scope>test</scope>
68 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020069 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-test</artifactId>
72 <scope>test</scope>
ToineSiebelink28066622021-01-27 10:47:04 +000073 <exclusions>
74 <exclusion>
75 <groupId>org.junit.vintage</groupId>
76 <artifactId>junit-vintage-engine</artifactId>
77 </exclusion>
78 </exclusions>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020079 </dependency>
80 <dependency>
81 <groupId>org.testcontainers</groupId>
82 <artifactId>postgresql</artifactId>
83 <scope>test</scope>
84 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000085 <dependency>
86 <groupId>org.testcontainers</groupId>
87 <artifactId>spock</artifactId>
88 <scope>test</scope>
89 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010090 </dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010091</project>