blob: 6e92894fca93be4c17e9ee4ed899f6a3dc2306a2 [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
lukegleeson15b93e72021-07-07 15:25:30 +01004 Copyright (C) 2020-2021 Pantheon.tech
5 Modifications Copyright (C) 2020-2021 Bell Canada
lukegleesond5bda882022-03-02 14:32:47 +00006 Modifications Copyright (C) 2020-2022 Nordix Foundation
shivasubedi8df61a92021-06-16 14:43:18 +01007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20-->
21
Rishi Chailb220d742020-09-16 15:23:53 +010022<project xmlns="http://maven.apache.org/POM/4.0.0"
Rishi Chail8af414a2020-10-08 12:33:33 +010023 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010028 <artifactId>cps-parent</artifactId>
puthuparambil.adityacc17ae52022-02-25 13:24:03 +000029 <version>3.0.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010030 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chail8af414a2020-10-08 12:33:33 +010031 </parent>
Claudio David Gasparinidc6f81c2021-01-13 17:42:25 +010032
Rishi Chail8af414a2020-10-08 12:33:33 +010033 <artifactId>cps-ri</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010034
JosephKeenan9e3fc492021-07-29 16:10:07 +010035 <repositories>
36 <repository>
37 <id>nordix-liquibase-repo</id>
38 <name>liquibase</name>
39 <url>https://artifactory.nordix.org/artifactory/liquibase</url>
40 </repository>
41 </repositories>
42
Rishi Chail8af414a2020-10-08 12:33:33 +010043 <dependencies>
Rishi Chail8af414a2020-10-08 12:33:33 +010044 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010045 <groupId>${project.groupId}</groupId>
Rishi Chail8af414a2020-10-08 12:33:33 +010046 <artifactId>cps-service</artifactId>
Rishi Chail8af414a2020-10-08 12:33:33 +010047 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010048 <dependency>
ToineSiebelinkc37678a2021-05-20 16:44:21 +010049 <groupId>${project.groupId}</groupId>
50 <artifactId>cps-path-parser</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010054 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-starter-data-jpa</artifactId>
56 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010057 <dependency>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-validation</artifactId>
60 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010061 <dependency>
Bruno Sakoto9be188d2021-06-16 11:47:54 -040062 <groupId>org.springframework.retry</groupId>
63 <artifactId>spring-retry</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.springframework</groupId>
67 <artifactId>spring-aspects</artifactId>
68 </dependency>
69 <dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010070 <groupId>org.postgresql</groupId>
71 <artifactId>postgresql</artifactId>
72 </dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010073 <!-- Add Hibernate support for Postgres datatype JSONB -->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010074 <dependency>
Rishi Chail6f523db2020-10-21 12:04:16 +010075 <groupId>com.vladmihalcea</groupId>
76 <artifactId>hibernate-types-52</artifactId>
Rishi Chail6f523db2020-10-21 12:04:16 +010077 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +010078 <dependency>
79 <groupId>org.projectlombok</groupId>
80 <artifactId>lombok</artifactId>
81 </dependency>
puthuparambil.adityae182a6b2020-12-10 16:49:53 +000082 <dependency>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000083 <groupId>org.liquibase</groupId>
84 <artifactId>liquibase-core</artifactId>
JosephKeenan9e3fc492021-07-29 16:10:07 +010085 <version>4.4.2-nordix</version>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000086 </dependency>
puthuparambil.aditya2555da92021-03-10 11:55:33 +000087 <dependency>
88 <groupId>commons-codec</groupId>
89 <artifactId>commons-codec</artifactId>
90 </dependency>
Bruno Sakoto9be188d2021-06-16 11:47:54 -040091 <dependency>
92 <groupId>org.apache.commons</groupId>
93 <artifactId>commons-lang3</artifactId>
94 </dependency>
lukegleeson008abae2021-08-30 10:24:30 +010095 <dependency>
96 <groupId>com.fasterxml.jackson.core</groupId>
97 <artifactId>jackson-databind</artifactId>
98 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +000099 <!-- T E S T D E P E N D E N C I E S -->
100 <dependency>
101 <groupId>org.codehaus.groovy</groupId>
102 <artifactId>groovy</artifactId>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.spockframework</groupId>
107 <artifactId>spock-core</artifactId>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.spockframework</groupId>
112 <artifactId>spock-spring</artifactId>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>cglib</groupId>
117 <artifactId>cglib-nodep</artifactId>
118 <scope>test</scope>
119 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200120 <dependency>
121 <groupId>org.springframework.boot</groupId>
122 <artifactId>spring-boot-starter-test</artifactId>
123 <scope>test</scope>
ToineSiebelink28066622021-01-27 10:47:04 +0000124 <exclusions>
125 <exclusion>
126 <groupId>org.junit.vintage</groupId>
127 <artifactId>junit-vintage-engine</artifactId>
128 </exclusion>
129 </exclusions>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200130 </dependency>
131 <dependency>
132 <groupId>org.testcontainers</groupId>
133 <artifactId>postgresql</artifactId>
134 <scope>test</scope>
135 </dependency>
ToineSiebelink28066622021-01-27 10:47:04 +0000136 <dependency>
137 <groupId>org.testcontainers</groupId>
138 <artifactId>spock</artifactId>
139 <scope>test</scope>
140 </dependency>
Rishi Chail8af414a2020-10-08 12:33:33 +0100141 </dependencies>
Renu Kumariff52b942021-05-27 23:16:32 -0400142
lukegleeson008abae2021-08-30 10:24:30 +0100143
Renu Kumariff52b942021-05-27 23:16:32 -0400144 <build>
145 <plugins>
146 <plugin>
147 <groupId>org.apache.maven.plugins</groupId>
148 <artifactId>maven-surefire-plugin</artifactId>
149 <configuration>
150 <environmentVariables>
151 <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/library/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>
152 </environmentVariables>
153 </configuration>
154 </plugin>
155 </plugins>
156 </build>
Rishi Chail8af414a2020-10-08 12:33:33 +0100157</project>