55e7c07929f8263c195d93b5cc1dc1c00f1a5df3
[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-2023 Nordix Foundation
6   Modifications Copyright (C) 2022 Bell Canada.
7   ================================================================================
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
20   SPDX-License-Identifier: Apache-2.0
21   ============LICENSE_END=========================================================
22 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>org.onap.cps</groupId>
29     <artifactId>cps-dependencies</artifactId>
30     <version>3.3.7-SNAPSHOT</version>
31     <packaging>pom</packaging>
32
33     <name>${project.groupId}:${project.artifactId}</name>
34     <description>This artifact contains dependencyManagement declarations of upstream versions.</description>
35
36     <properties>
37         <groovy.version>3.0.18</groovy.version>
38         <nexusproxy>https://nexus.onap.org</nexusproxy>
39         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
40         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
41         <sonar.skip>true</sonar.skip>
42         <testcontainers.version>1.18.3</testcontainers.version>
43         <mapstruct.version>1.4.2.Final</mapstruct.version>
44     </properties>
45
46     <build>
47         <pluginManagement>
48             <plugins>
49                 <plugin>
50                     <groupId>org.apache.maven.plugins</groupId>
51                     <artifactId>maven-deploy-plugin</artifactId>
52                     <version>2.8.2</version>
53                 </plugin>
54             </plugins>
55         </pluginManagement>
56     </build>
57
58     <distributionManagement>
59         <repository>
60             <id>ecomp-releases</id>
61             <name>ECOMP Release Repository</name>
62             <url>${nexusproxy}${releaseNexusPath}</url>
63         </repository>
64         <snapshotRepository>
65             <id>ecomp-snapshots</id>
66             <name>ECOMP Snapshot Repository</name>
67             <url>${nexusproxy}${snapshotNexusPath}</url>
68         </snapshotRepository>
69     </distributionManagement>
70
71     <dependencyManagement>
72         <dependencies>
73             <dependency>
74                 <groupId>org.springdoc</groupId>
75                 <artifactId>springdoc-openapi-ui</artifactId>
76                 <version>1.6.6</version>
77             </dependency>
78             <dependency>
79                 <groupId>org.springframework.boot</groupId>
80                 <artifactId>spring-boot-dependencies</artifactId>
81                 <version>3.0.0</version>
82                 <type>pom</type>
83                 <scope>import</scope>
84             </dependency>
85             <dependency>
86                 <groupId>org.springframework.cloud</groupId>
87                 <artifactId>spring-cloud-dependencies</artifactId>
88                 <version>2022.0.3</version>
89                 <type>pom</type>
90                 <scope>import</scope>
91             </dependency>
92             <dependency>
93                 <groupId>org.opendaylight.yangtools</groupId>
94                 <artifactId>yangtools-artifacts</artifactId>
95                 <version>8.0.6</version>
96                 <type>pom</type>
97                 <scope>import</scope>
98             </dependency>
99             <dependency>
100                 <groupId>io.swagger.core.v3</groupId>
101                 <artifactId>swagger-annotations</artifactId>
102                 <version>2.2.10</version>
103             </dependency>
104             <dependency>
105                 <groupId>io.springfox</groupId>
106                 <artifactId>springfox-boot-starter</artifactId>
107                 <version>3.0.0</version>
108             </dependency>
109             <dependency>
110                 <groupId>com.google.code.gson</groupId>
111                 <artifactId>gson</artifactId>
112                 <version>2.8.9</version>
113             </dependency>
114             <dependency>
115                 <groupId>io.hypersistence</groupId>
116                 <artifactId>hypersistence-utils-hibernate-60</artifactId>
117                 <version>3.5.0</version>
118             </dependency>
119             <dependency>
120                 <groupId>org.antlr</groupId>
121                 <artifactId>antlr4-runtime</artifactId>
122                 <version>4.9.2</version>
123             </dependency>
124             <dependency>
125                 <groupId>org.codehaus.groovy</groupId>
126                 <artifactId>groovy</artifactId>
127                 <version>${groovy.version}</version>
128             </dependency>
129             <dependency>
130                 <groupId>org.codehaus.groovy</groupId>
131                 <artifactId>groovy-json</artifactId>
132                 <version>${groovy.version}</version>
133             </dependency>
134             <dependency>
135                 <groupId>org.spockframework</groupId>
136                 <artifactId>spock-core</artifactId>
137                 <version>2.4-M1-groovy-3.0</version>
138             </dependency>
139             <dependency>
140                 <groupId>org.spockframework</groupId>
141                 <artifactId>spock-spring</artifactId>
142                 <version>2.4-M1-groovy-3.0</version>
143             </dependency>
144             <dependency>
145                 <groupId>cglib</groupId>
146                 <artifactId>cglib-nodep</artifactId>
147                 <version>3.1</version>
148             </dependency>
149             <dependency>
150                 <groupId>io.cloudevents</groupId>
151                 <artifactId>cloudevents-bom</artifactId>
152                 <version>2.5.0</version>
153                 <type>pom</type>
154                 <scope>import</scope>
155             </dependency>
156             <dependency>
157                 <groupId>org.apache.commons</groupId>
158                 <artifactId>commons-lang3</artifactId>
159                 <version>3.11</version>
160             </dependency>
161             <dependency>
162                 <groupId>org.jetbrains</groupId>
163                 <artifactId>annotations</artifactId>
164                 <version>22.0.0</version>
165             </dependency>
166             <dependency>
167                 <groupId>org.testcontainers</groupId>
168                 <artifactId>testcontainers-bom</artifactId>
169                 <version>1.18.3</version>
170                 <type>pom</type>
171                 <scope>import</scope>
172             </dependency>
173             <dependency>
174                 <groupId>com.github.spotbugs</groupId>
175                 <artifactId>spotbugs</artifactId>
176                 <version>4.2.0</version>
177             </dependency>
178             <dependency>
179                 <groupId>org.liquibase</groupId>
180                 <artifactId>liquibase-core</artifactId>
181                 <version>4.16.0</version>
182             </dependency>
183             <dependency>
184                 <groupId>com.tngtech.archunit</groupId>
185                 <artifactId>archunit-junit5</artifactId>
186                 <version>0.18.0</version>
187                 <scope>test</scope>
188             </dependency>
189             <dependency>
190                 <groupId>org.mapstruct</groupId>
191                 <artifactId>mapstruct</artifactId>
192                 <version>${mapstruct.version}</version>
193             </dependency>
194             <dependency>
195                 <groupId>org.mapstruct</groupId>
196                 <artifactId>mapstruct-processor</artifactId>
197                 <version>${mapstruct.version}</version>
198             </dependency>
199             <dependency>
200                 <groupId>net.logstash.logback</groupId>
201                 <artifactId>logstash-logback-encoder</artifactId>
202                 <version>7.0.1</version>
203             </dependency>
204             <dependency>
205                 <groupId>org.codehaus.janino</groupId>
206                 <artifactId>janino</artifactId>
207                 <version>3.1.7</version>
208             </dependency>
209             <dependency>
210                 <groupId>com.hazelcast</groupId>
211                 <artifactId>hazelcast-spring</artifactId>
212                 <version>5.3.1</version>
213             </dependency>
214             <dependency>
215                 <groupId>com.google.guava</groupId>
216                 <artifactId>guava</artifactId>
217                 <version>31.1-jre</version>
218             </dependency>
219             <dependency>
220                 <groupId>org.springframework.boot</groupId>
221                 <artifactId>spring-boot-properties-migrator</artifactId>
222                 <scope>runtime</scope>
223             </dependency>
224             <dependency>
225                 <groupId>jakarta.validation</groupId>
226                 <artifactId>jakarta.validation-api</artifactId>
227                 <version>3.0.2</version>
228             </dependency>
229             <dependency>
230                 <groupId>org.apache.maven.plugins</groupId>
231                 <artifactId>maven-resources-plugin</artifactId>
232                 <version>3.3.1</version>
233             </dependency>
234             <dependency>
235                 <groupId>io.micrometer</groupId>
236                 <artifactId>micrometer-tracing-bridge-brave</artifactId>
237                 <version>1.0.0</version>
238             </dependency>
239             <dependency>
240                 <groupId>com.fasterxml.jackson.dataformat</groupId>
241                 <artifactId>jackson-dataformat-xml</artifactId>
242                 <version>2.13.1</version>
243             </dependency>
244             <dependency>
245                 <groupId>io.swagger.core.v3</groupId>
246                 <artifactId>swagger-models</artifactId>
247                 <version>2.2.15</version>
248             </dependency>
249             <dependency>
250                 <groupId>org.projectlombok</groupId>
251                 <artifactId>lombok</artifactId>
252                 <version>1.18.24</version>
253             </dependency>
254             <dependency>
255                 <groupId>io.gsonfire</groupId>
256                 <artifactId>gson-fire</artifactId>
257                 <version>1.8.5</version>
258             </dependency>
259             <dependency>
260                 <groupId>com.fasterxml.jackson.core</groupId>
261                 <artifactId>jackson-databind</artifactId>
262                 <version>2.14.0</version>
263             </dependency>
264             <dependency>
265                 <groupId>org.eclipse.jetty</groupId>
266                 <artifactId>jetty-server</artifactId>
267                 <version>11.0.14</version>
268             </dependency>
269             <dependency>
270                 <groupId>jakarta.servlet</groupId>
271                 <artifactId>jakarta.servlet-api</artifactId>
272                 <version>6.0.0</version>
273             </dependency>
274             <dependency>
275                 <groupId>org.openapitools</groupId>
276                 <artifactId>jackson-databind-nullable</artifactId>
277                 <version>0.2.4</version>
278             </dependency>
279             <dependency>
280                 <groupId>org.junit.jupiter</groupId>
281                 <artifactId>junit-jupiter-api</artifactId>
282                 <version>5.10.0</version>
283             </dependency>
284             <dependency>
285                 <groupId>org.springframework</groupId>
286                 <artifactId>spring-test</artifactId>
287                 <version>6.0.11</version>
288             </dependency>
289             <dependency>
290                 <groupId>org.spockframework</groupId>
291                 <artifactId>spock-core</artifactId>
292                 <version>2.4-M1-groovy-3.0</version>
293             </dependency>
294             <dependency>
295                 <groupId>org.spockframework</groupId>
296                 <artifactId>spock-spring</artifactId>
297                 <version>2.4-M1-groovy-3.0</version>
298             </dependency>
299         </dependencies>
300     </dependencyManagement>
301 </project>