blob: b2cf6917e6f7684aed84f1f931c1d6c9a4506d1b [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
Renu Kumariff52b942021-05-27 23:16:32 -04005 Modifications Copyright (C) 2021 Bell Canada.
shivasubedi8df61a92021-06-16 14:43:18 +01006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19-->
20
Rishi Chailb220d742020-09-16 15:23:53 +010021<project xmlns="http://maven.apache.org/POM/4.0.0"
Rishi Chail8af414a2020-10-08 12:33:33 +010022 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010027 <artifactId>cps-parent</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000028 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010029 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chail8af414a2020-10-08 12:33:33 +010030 </parent>
Claudio David Gasparinidc6f81c2021-01-13 17:42:25 +010031
Rishi Chail8af414a2020-10-08 12:33:33 +010032 <artifactId>cps-ri</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010033
Rishi Chail8af414a2020-10-08 12:33:33 +010034 <dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010035 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010036 <groupId>${project.groupId}</groupId>
Rishi Chail8af414a2020-10-08 12:33:33 +010037 <artifactId>cps-service</artifactId>
Rishi Chail8af414a2020-10-08 12:33:33 +010038 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010039 <dependency>
ToineSiebelinkc37678a2021-05-20 16:44:21 +010040 <groupId>${project.groupId}</groupId>
41 <artifactId>cps-path-parser</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010045 <groupId>org.springframework.boot</groupId>
46 <artifactId>spring-boot-starter-data-jpa</artifactId>
47 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010048 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-starter-validation</artifactId>
51 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010052 <dependency>
53 <groupId>org.postgresql</groupId>
54 <artifactId>postgresql</artifactId>
55 </dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010056 <!-- Add Hibernate support for Postgres datatype JSONB -->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010057 <dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010058 <groupId>com.vladmihalcea</groupId>
59 <artifactId>hibernate-types-52</artifactId>
Rishi Chail6f523db2020-10-21 12:04:16 +010060 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010061 <dependency>
62 <groupId>org.projectlombok</groupId>
63 <artifactId>lombok</artifactId>
64 </dependency>
puthuparambil.adityae182a6b2020-12-10 16:49:53 +000065 <dependency>
66 <groupId>org.modelmapper</groupId>
67 <artifactId>modelmapper</artifactId>
68 </dependency>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000069 <dependency>
70 <groupId>org.liquibase</groupId>
71 <artifactId>liquibase-core</artifactId>
72 </dependency>
puthuparambil.aditya2555da92021-03-10 11:55:33 +000073 <dependency>
74 <groupId>commons-codec</groupId>
75 <artifactId>commons-codec</artifactId>
76 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000077 <!-- T E S T D E P E N D E N C I E S -->
78 <dependency>
79 <groupId>org.codehaus.groovy</groupId>
80 <artifactId>groovy</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.spockframework</groupId>
85 <artifactId>spock-core</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.spockframework</groupId>
90 <artifactId>spock-spring</artifactId>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>cglib</groupId>
95 <artifactId>cglib-nodep</artifactId>
96 <scope>test</scope>
97 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020098 <dependency>
99 <groupId>org.springframework.boot</groupId>
100 <artifactId>spring-boot-starter-test</artifactId>
101 <scope>test</scope>
ToineSiebelink28066622021-01-27 10:47:04 +0000102 <exclusions>
103 <exclusion>
104 <groupId>org.junit.vintage</groupId>
105 <artifactId>junit-vintage-engine</artifactId>
106 </exclusion>
107 </exclusions>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200108 </dependency>
109 <dependency>
110 <groupId>org.testcontainers</groupId>
111 <artifactId>postgresql</artifactId>
112 <scope>test</scope>
113 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +0000114 <dependency>
115 <groupId>org.testcontainers</groupId>
116 <artifactId>spock</artifactId>
117 <scope>test</scope>
118 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +0100119 </dependencies>
Renu Kumariff52b942021-05-27 23:16:32 -0400120
121 <build>
122 <plugins>
123 <plugin>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-surefire-plugin</artifactId>
126 <configuration>
127 <environmentVariables>
128 <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/library/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>
129 </environmentVariables>
130 </configuration>
131 </plugin>
132 </plugins>
133 </build>
Rishi Chail8af414a2020-10-08 12:33:33 +0100134</project>