blob: 94d2fa19b0ca7334cc5c168a44aa353f4bdf5c56 [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.Chaildbffd912021-03-05 12:32:33 +00008 <version>1.1.0-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>
puthuparambil.aditya2555da92021-03-10 11:55:33 +000048 <dependency>
49 <groupId>commons-codec</groupId>
50 <artifactId>commons-codec</artifactId>
51 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000052 <!-- T E S T D E P E N D E N C I E S -->
53 <dependency>
54 <groupId>org.codehaus.groovy</groupId>
55 <artifactId>groovy</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.spockframework</groupId>
60 <artifactId>spock-core</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.spockframework</groupId>
65 <artifactId>spock-spring</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>cglib</groupId>
70 <artifactId>cglib-nodep</artifactId>
71 <scope>test</scope>
72 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020073 <dependency>
74 <groupId>org.springframework.boot</groupId>
75 <artifactId>spring-boot-starter-test</artifactId>
76 <scope>test</scope>
ToineSiebelink28066622021-01-27 10:47:04 +000077 <exclusions>
78 <exclusion>
79 <groupId>org.junit.vintage</groupId>
80 <artifactId>junit-vintage-engine</artifactId>
81 </exclusion>
82 </exclusions>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020083 </dependency>
84 <dependency>
85 <groupId>org.testcontainers</groupId>
86 <artifactId>postgresql</artifactId>
87 <scope>test</scope>
88 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000089 <dependency>
90 <groupId>org.testcontainers</groupId>
91 <artifactId>spock</artifactId>
92 <scope>test</scope>
93 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010094 </dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010095</project>