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