blob: 320c7edae07f03d4d8d43bf1ce0283c3a6b503ea [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 Modification Copyright (C) 2021 Nordix Foundation
5 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ============LICENSE_END=========================================================
18-->
19
Rishi Chailb220d742020-09-16 15:23:53 +010020<project xmlns="http://maven.apache.org/POM/4.0.0"
Rishi Chail8af414a2020-10-08 12:33:33 +010021 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010026 <artifactId>cps-parent</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000027 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010028 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chail8af414a2020-10-08 12:33:33 +010029 </parent>
Claudio David Gasparinidc6f81c2021-01-13 17:42:25 +010030
Rishi Chail8af414a2020-10-08 12:33:33 +010031 <artifactId>cps-ri</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010032
Rishi Chail8af414a2020-10-08 12:33:33 +010033 <dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010034 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010035 <groupId>${project.groupId}</groupId>
Rishi Chail8af414a2020-10-08 12:33:33 +010036 <artifactId>cps-service</artifactId>
Rishi Chail8af414a2020-10-08 12:33:33 +010037 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010038 <dependency>
ToineSiebelinkc37678a2021-05-20 16:44:21 +010039 <groupId>${project.groupId}</groupId>
40 <artifactId>cps-path-parser</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010044 <groupId>org.springframework.boot</groupId>
45 <artifactId>spring-boot-starter-data-jpa</artifactId>
46 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010047 <dependency>
48 <groupId>org.springframework.boot</groupId>
49 <artifactId>spring-boot-starter-validation</artifactId>
50 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010051 <dependency>
52 <groupId>org.postgresql</groupId>
53 <artifactId>postgresql</artifactId>
54 </dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010055 <!-- Add Hibernate support for Postgres datatype JSONB -->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010056 <dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010057 <groupId>com.vladmihalcea</groupId>
58 <artifactId>hibernate-types-52</artifactId>
Rishi Chail6f523db2020-10-21 12:04:16 +010059 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010060 <dependency>
61 <groupId>org.projectlombok</groupId>
62 <artifactId>lombok</artifactId>
63 </dependency>
puthuparambil.adityae182a6b2020-12-10 16:49:53 +000064 <dependency>
65 <groupId>org.modelmapper</groupId>
66 <artifactId>modelmapper</artifactId>
67 </dependency>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000068 <dependency>
69 <groupId>org.liquibase</groupId>
70 <artifactId>liquibase-core</artifactId>
71 </dependency>
puthuparambil.aditya2555da92021-03-10 11:55:33 +000072 <dependency>
73 <groupId>commons-codec</groupId>
74 <artifactId>commons-codec</artifactId>
75 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000076 <!-- T E S T D E P E N D E N C I E S -->
77 <dependency>
78 <groupId>org.codehaus.groovy</groupId>
79 <artifactId>groovy</artifactId>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.spockframework</groupId>
84 <artifactId>spock-core</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.spockframework</groupId>
89 <artifactId>spock-spring</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>cglib</groupId>
94 <artifactId>cglib-nodep</artifactId>
95 <scope>test</scope>
96 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020097 <dependency>
98 <groupId>org.springframework.boot</groupId>
99 <artifactId>spring-boot-starter-test</artifactId>
100 <scope>test</scope>
ToineSiebelink28066622021-01-27 10:47:04 +0000101 <exclusions>
102 <exclusion>
103 <groupId>org.junit.vintage</groupId>
104 <artifactId>junit-vintage-engine</artifactId>
105 </exclusion>
106 </exclusions>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200107 </dependency>
108 <dependency>
109 <groupId>org.testcontainers</groupId>
110 <artifactId>postgresql</artifactId>
111 <scope>test</scope>
112 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +0000113 <dependency>
114 <groupId>org.testcontainers</groupId>
115 <artifactId>spock</artifactId>
116 <scope>test</scope>
117 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +0100118 </dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +0100119</project>