Upgrade Liquibase to Version 4.14.0
[cps.git] / cps-ri / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3   ============LICENSE_START=======================================================\r
4   Copyright (C) 2020-2021 Pantheon.tech\r
5   Modifications Copyright (C) 2020-2021 Bell Canada\r
6   Modifications Copyright (C) 2020-2022 Nordix Foundation\r
7   ================================================================================\r
8   Licensed under the Apache License, Version 2.0 (the "License");\r
9   you may not use this file except in compliance with the License.\r
10   You may obtain a copy of the License at\r
11 \r
12         http://www.apache.org/licenses/LICENSE-2.0\r
13 \r
14   Unless required by applicable law or agreed to in writing, software\r
15   distributed under the License is distributed on an "AS IS" BASIS,\r
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17   See the License for the specific language governing permissions and\r
18   limitations under the License.\r
19   ============LICENSE_END=========================================================\r
20 -->\r
21 \r
22 <project xmlns="http://maven.apache.org/POM/4.0.0"\r
23     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
24     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">\r
25     <modelVersion>4.0.0</modelVersion>\r
26     <parent>\r
27         <groupId>org.onap.cps</groupId>\r
28         <artifactId>cps-parent</artifactId>\r
29         <version>3.1.0-SNAPSHOT</version>\r
30         <relativePath>../cps-parent/pom.xml</relativePath>\r
31     </parent>\r
32 \r
33     <artifactId>cps-ri</artifactId>\r
34 \r
35     <dependencies>\r
36         <dependency>\r
37             <groupId>${project.groupId}</groupId>\r
38             <artifactId>cps-service</artifactId>\r
39         </dependency>\r
40         <dependency>\r
41             <groupId>${project.groupId}</groupId>\r
42             <artifactId>cps-path-parser</artifactId>\r
43             <version>${project.version}</version>\r
44         </dependency>\r
45         <dependency>\r
46             <groupId>org.springframework.boot</groupId>\r
47             <artifactId>spring-boot-starter-data-jpa</artifactId>\r
48         </dependency>\r
49         <dependency>\r
50             <groupId>org.springframework.boot</groupId>\r
51             <artifactId>spring-boot-starter-validation</artifactId>\r
52         </dependency>\r
53         <dependency>\r
54             <groupId>org.springframework.retry</groupId>\r
55             <artifactId>spring-retry</artifactId>\r
56         </dependency>\r
57         <dependency>\r
58             <groupId>org.springframework</groupId>\r
59             <artifactId>spring-aspects</artifactId>\r
60         </dependency>\r
61         <dependency>\r
62             <groupId>org.postgresql</groupId>\r
63             <artifactId>postgresql</artifactId>\r
64         </dependency>\r
65         <!-- Add Hibernate support for Postgres datatype JSONB -->\r
66         <dependency>\r
67             <groupId>com.vladmihalcea</groupId>\r
68             <artifactId>hibernate-types-52</artifactId>\r
69         </dependency>\r
70         <dependency>\r
71             <groupId>org.projectlombok</groupId>\r
72             <artifactId>lombok</artifactId>\r
73         </dependency>\r
74         <dependency>\r
75             <groupId>org.liquibase</groupId>\r
76             <artifactId>liquibase-core</artifactId>\r
77             <version>4.14.0</version>\r
78         </dependency>\r
79         <dependency>\r
80             <groupId>commons-codec</groupId>\r
81             <artifactId>commons-codec</artifactId>\r
82         </dependency>\r
83         <dependency>\r
84             <groupId>org.apache.commons</groupId>\r
85             <artifactId>commons-lang3</artifactId>\r
86         </dependency>\r
87         <dependency>\r
88             <groupId>com.fasterxml.jackson.core</groupId>\r
89             <artifactId>jackson-databind</artifactId>\r
90         </dependency>\r
91         <!-- T E S T   D E P E N D E N C I E S -->\r
92         <dependency>\r
93             <groupId>org.codehaus.groovy</groupId>\r
94             <artifactId>groovy</artifactId>\r
95             <scope>test</scope>\r
96         </dependency>\r
97         <dependency>\r
98             <groupId>org.spockframework</groupId>\r
99             <artifactId>spock-core</artifactId>\r
100             <scope>test</scope>\r
101         </dependency>\r
102         <dependency>\r
103             <groupId>org.spockframework</groupId>\r
104             <artifactId>spock-spring</artifactId>\r
105             <scope>test</scope>\r
106         </dependency>\r
107         <dependency>\r
108             <groupId>cglib</groupId>\r
109             <artifactId>cglib-nodep</artifactId>\r
110             <scope>test</scope>\r
111         </dependency>\r
112         <dependency>\r
113             <groupId>org.springframework.boot</groupId>\r
114             <artifactId>spring-boot-starter-test</artifactId>\r
115             <scope>test</scope>\r
116             <exclusions>\r
117                 <exclusion>\r
118                     <groupId>org.junit.vintage</groupId>\r
119                     <artifactId>junit-vintage-engine</artifactId>\r
120                 </exclusion>\r
121             </exclusions>\r
122         </dependency>\r
123         <dependency>\r
124             <groupId>org.testcontainers</groupId>\r
125             <artifactId>postgresql</artifactId>\r
126             <scope>test</scope>\r
127         </dependency>\r
128         <dependency>\r
129             <groupId>org.testcontainers</groupId>\r
130             <artifactId>spock</artifactId>\r
131             <scope>test</scope>\r
132         </dependency>\r
133     </dependencies>\r
134 \r
135 \r
136     <build>\r
137         <plugins>\r
138             <plugin>\r
139                 <groupId>org.apache.maven.plugins</groupId>\r
140                 <artifactId>maven-surefire-plugin</artifactId>\r
141                 <configuration>\r
142                     <environmentVariables>\r
143                         <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/library/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>\r
144                     </environmentVariables>\r
145                 </configuration>\r
146             </plugin>\r
147         </plugins>\r
148     </build>\r
149 </project>\r