Merge "Patch #2 : Introduce kafka template for cloud events"
[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.3-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.8</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.17.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>2.7.6</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>2021.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.1.4</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-52</artifactId>
117                 <version>3.3.2</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.0-M5-groovy-3.0</version>
138             </dependency>
139             <dependency>
140                 <groupId>org.spockframework</groupId>
141                 <artifactId>spock-spring</artifactId>
142                 <version>2.0-M5-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.17.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>4.2.5</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>javax.validation</groupId>
221                 <artifactId>validation-api</artifactId>
222                 <version>2.0.1.Final</version>
223             </dependency>
224         </dependencies>
225     </dependencyManagement>
226 </project>