Update SpringBoot when approved version has Log4J 2.17.1 or higher
[cps.git] / cps-dependencies / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (c) 2021 Linux Foundation.
5   Modifications Copyright (C) 2020-2022 Nordix Foundation
6   ================================================================================
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 <project xmlns="http://maven.apache.org/POM/4.0.0"
21          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23
24     <modelVersion>4.0.0</modelVersion>
25     <groupId>org.onap.cps</groupId>
26     <artifactId>cps-dependencies</artifactId>
27     <version>3.1.0-SNAPSHOT</version>
28     <packaging>pom</packaging>
29
30     <name>${project.groupId}:${project.artifactId}</name>
31     <description>This artifact contains dependencyManagement declarations of upstream versions.</description>
32
33     <repositories>
34         <repository>
35             <id>nordix-liquibase-repo</id>
36             <name>liquibase</name>
37             <url>https://artifactory.nordix.org/artifactory/liquibase</url>
38         </repository>
39     </repositories>
40
41     <properties>
42         <groovy.version>3.0.8</groovy.version>
43         <nexusproxy>https://nexus.onap.org</nexusproxy>
44         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
45         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
46         <sonar.skip>true</sonar.skip>
47         <testcontainers.version>1.15.1</testcontainers.version>
48         <mapstruct.version>1.4.2.Final</mapstruct.version>
49     </properties>
50
51     <distributionManagement>
52         <repository>
53             <id>ecomp-releases</id>
54             <name>ECOMP Release Repository</name>
55             <url>${nexusproxy}${releaseNexusPath}</url>
56         </repository>
57         <snapshotRepository>
58             <id>ecomp-snapshots</id>
59             <name>ECOMP Snapshot Repository</name>
60             <url>${nexusproxy}${snapshotNexusPath}</url>
61         </snapshotRepository>
62     </distributionManagement>
63
64     <dependencyManagement>
65         <dependencies>
66             <dependency>
67                 <groupId>org.springframework.boot</groupId>
68                 <artifactId>spring-boot-dependencies</artifactId>
69                 <version>2.6.4</version>
70                 <type>pom</type>
71                 <scope>import</scope>
72             </dependency>
73             <dependency>
74                 <groupId>org.springframework.cloud</groupId>
75                 <artifactId>spring-cloud-dependencies</artifactId>
76                 <version>2021.0.1</version>
77                 <type>pom</type>
78                 <scope>import</scope>
79             </dependency>
80             <dependency>
81                 <groupId>org.springframework</groupId>
82                 <artifactId>spring-web</artifactId>
83                 <version>5.3.13</version>
84             </dependency>
85             <dependency>
86                 <groupId>org.opendaylight.yangtools</groupId>
87                 <artifactId>yangtools-artifacts</artifactId>
88                 <version>6.0.1</version>
89                 <type>pom</type>
90                 <scope>import</scope>
91             </dependency>
92             <dependency>
93                 <groupId>io.swagger.core.v3</groupId>
94                 <artifactId>swagger-annotations</artifactId>
95                 <version>2.1.4</version>
96             </dependency>
97             <dependency>
98                 <groupId>io.springfox</groupId>
99                 <artifactId>springfox-boot-starter</artifactId>
100                 <version>3.0.0</version>
101             </dependency>
102             <dependency>
103                 <groupId>com.google.code.gson</groupId>
104                 <artifactId>gson</artifactId>
105                 <version>2.8.9</version>
106             </dependency>
107             <dependency>
108                 <groupId>com.vladmihalcea</groupId>
109                 <artifactId>hibernate-types-52</artifactId>
110                 <version>2.10.0</version>
111             </dependency>
112             <dependency>
113                 <groupId>org.antlr</groupId>
114                 <artifactId>antlr4-runtime</artifactId>
115                 <version>4.9.2</version>
116             </dependency>
117             <dependency>
118                 <groupId>org.codehaus.groovy</groupId>
119                 <artifactId>groovy</artifactId>
120                 <version>${groovy.version}</version>
121             </dependency>
122             <dependency>
123                 <groupId>org.codehaus.groovy</groupId>
124                 <artifactId>groovy-json</artifactId>
125                 <version>${groovy.version}</version>
126             </dependency>
127             <dependency>
128                 <groupId>org.spockframework</groupId>
129                 <artifactId>spock-core</artifactId>
130                 <version>2.0-M5-groovy-3.0</version>
131             </dependency>
132             <dependency>
133                 <groupId>org.spockframework</groupId>
134                 <artifactId>spock-spring</artifactId>
135                 <version>2.0-M5-groovy-3.0</version>
136             </dependency>
137             <dependency>
138                 <groupId>cglib</groupId>
139                 <artifactId>cglib-nodep</artifactId>
140                 <version>3.1</version>
141             </dependency>
142             <dependency>
143                 <groupId>org.apache.commons</groupId>
144                 <artifactId>commons-lang3</artifactId>
145                 <version>3.11</version>
146             </dependency>
147             <dependency>
148                 <groupId>org.jetbrains</groupId>
149                 <artifactId>annotations</artifactId>
150                 <version>22.0.0</version>
151             </dependency>
152             <dependency>
153                 <groupId>org.testcontainers</groupId>
154                 <artifactId>kafka</artifactId>
155                 <version>${testcontainers.version}</version>
156             </dependency>
157             <dependency>
158                 <groupId>org.testcontainers</groupId>
159                 <artifactId>postgresql</artifactId>
160                 <version>${testcontainers.version}</version>
161             </dependency>
162             <dependency>
163                 <groupId>org.testcontainers</groupId>
164                 <artifactId>spock</artifactId>
165                 <version>${testcontainers.version}</version>
166             </dependency>
167             <dependency>
168                 <groupId>com.github.spotbugs</groupId>
169                 <artifactId>spotbugs</artifactId>
170                 <version>4.2.0</version>
171             </dependency>
172             <dependency>
173                 <groupId>org.liquibase</groupId>
174                 <artifactId>liquibase-core</artifactId>
175                 <version>4.4.2-nordix</version>
176             </dependency>
177             <dependency>
178                 <groupId>com.tngtech.archunit</groupId>
179                 <artifactId>archunit-junit5</artifactId>
180                 <version>0.18.0</version>
181                 <scope>test</scope>
182             </dependency>
183             <dependency>
184                 <groupId>org.mapstruct</groupId>
185                 <artifactId>mapstruct</artifactId>
186                 <version>${mapstruct.version}</version>
187             </dependency>
188             <dependency>
189                 <groupId>org.mapstruct</groupId>
190                 <artifactId>mapstruct-processor</artifactId>
191                 <version>${mapstruct.version}</version>
192             </dependency>
193         </dependencies>
194     </dependencyManagement>
195 </project>