Security Logging Fields
[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   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.1.0-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     <repositories>
37         <repository>
38             <id>nordix-liquibase-repo</id>
39             <name>liquibase</name>
40             <url>https://artifactory.nordix.org/artifactory/liquibase</url>
41         </repository>
42     </repositories>
43
44     <properties>
45         <groovy.version>3.0.8</groovy.version>
46         <nexusproxy>https://nexus.onap.org</nexusproxy>
47         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
48         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
49         <sonar.skip>true</sonar.skip>
50         <testcontainers.version>1.15.1</testcontainers.version>
51         <mapstruct.version>1.4.2.Final</mapstruct.version>
52     </properties>
53
54     <build>
55         <pluginManagement>
56             <plugins>
57                 <plugin>
58                     <groupId>org.apache.maven.plugins</groupId>
59                     <artifactId>maven-deploy-plugin</artifactId>
60                     <version>2.8.2</version>
61                 </plugin>
62             </plugins>
63         </pluginManagement>
64     </build>
65
66     <distributionManagement>
67         <repository>
68             <id>ecomp-releases</id>
69             <name>ECOMP Release Repository</name>
70             <url>${nexusproxy}${releaseNexusPath}</url>
71         </repository>
72         <snapshotRepository>
73             <id>ecomp-snapshots</id>
74             <name>ECOMP Snapshot Repository</name>
75             <url>${nexusproxy}${snapshotNexusPath}</url>
76         </snapshotRepository>
77     </distributionManagement>
78
79     <dependencyManagement>
80         <dependencies>
81             <dependency>
82                 <groupId>org.springframework.boot</groupId>
83                 <artifactId>spring-boot-dependencies</artifactId>
84                 <version>2.6.4</version>
85                 <type>pom</type>
86                 <scope>import</scope>
87             </dependency>
88             <dependency>
89                 <groupId>org.springframework.cloud</groupId>
90                 <artifactId>spring-cloud-dependencies</artifactId>
91                 <version>2021.0.1</version>
92                 <type>pom</type>
93                 <scope>import</scope>
94             </dependency>
95             <dependency>
96                 <groupId>org.opendaylight.yangtools</groupId>
97                 <artifactId>yangtools-artifacts</artifactId>
98                 <version>6.0.1</version>
99                 <type>pom</type>
100                 <scope>import</scope>
101             </dependency>
102             <dependency>
103                 <groupId>io.swagger.core.v3</groupId>
104                 <artifactId>swagger-annotations</artifactId>
105                 <version>2.1.4</version>
106             </dependency>
107             <dependency>
108                 <groupId>io.springfox</groupId>
109                 <artifactId>springfox-boot-starter</artifactId>
110                 <version>3.0.0</version>
111             </dependency>
112             <dependency>
113                 <groupId>com.google.code.gson</groupId>
114                 <artifactId>gson</artifactId>
115                 <version>2.8.9</version>
116             </dependency>
117             <dependency>
118                 <groupId>com.vladmihalcea</groupId>
119                 <artifactId>hibernate-types-52</artifactId>
120                 <version>2.10.0</version>
121             </dependency>
122             <dependency>
123                 <groupId>org.antlr</groupId>
124                 <artifactId>antlr4-runtime</artifactId>
125                 <version>4.9.2</version>
126             </dependency>
127             <dependency>
128                 <groupId>org.codehaus.groovy</groupId>
129                 <artifactId>groovy</artifactId>
130                 <version>${groovy.version}</version>
131             </dependency>
132             <dependency>
133                 <groupId>org.codehaus.groovy</groupId>
134                 <artifactId>groovy-json</artifactId>
135                 <version>${groovy.version}</version>
136             </dependency>
137             <dependency>
138                 <groupId>org.spockframework</groupId>
139                 <artifactId>spock-core</artifactId>
140                 <version>2.0-M5-groovy-3.0</version>
141             </dependency>
142             <dependency>
143                 <groupId>org.spockframework</groupId>
144                 <artifactId>spock-spring</artifactId>
145                 <version>2.0-M5-groovy-3.0</version>
146             </dependency>
147             <dependency>
148                 <groupId>cglib</groupId>
149                 <artifactId>cglib-nodep</artifactId>
150                 <version>3.1</version>
151             </dependency>
152             <dependency>
153                 <groupId>org.apache.commons</groupId>
154                 <artifactId>commons-lang3</artifactId>
155                 <version>3.11</version>
156             </dependency>
157             <dependency>
158                 <groupId>org.jetbrains</groupId>
159                 <artifactId>annotations</artifactId>
160                 <version>22.0.0</version>
161             </dependency>
162             <dependency>
163                 <groupId>org.testcontainers</groupId>
164                 <artifactId>kafka</artifactId>
165                 <version>${testcontainers.version}</version>
166             </dependency>
167             <dependency>
168                 <groupId>org.testcontainers</groupId>
169                 <artifactId>postgresql</artifactId>
170                 <version>${testcontainers.version}</version>
171             </dependency>
172             <dependency>
173                 <groupId>org.testcontainers</groupId>
174                 <artifactId>spock</artifactId>
175                 <version>${testcontainers.version}</version>
176             </dependency>
177             <dependency>
178                 <groupId>com.github.spotbugs</groupId>
179                 <artifactId>spotbugs</artifactId>
180                 <version>4.2.0</version>
181             </dependency>
182             <dependency>
183                 <groupId>org.liquibase</groupId>
184                 <artifactId>liquibase-core</artifactId>
185                 <version>4.4.2-nordix</version>
186             </dependency>
187             <dependency>
188                 <groupId>com.tngtech.archunit</groupId>
189                 <artifactId>archunit-junit5</artifactId>
190                 <version>0.18.0</version>
191                 <scope>test</scope>
192             </dependency>
193             <dependency>
194                 <groupId>org.mapstruct</groupId>
195                 <artifactId>mapstruct</artifactId>
196                 <version>${mapstruct.version}</version>
197             </dependency>
198             <dependency>
199                 <groupId>org.mapstruct</groupId>
200                 <artifactId>mapstruct-processor</artifactId>
201                 <version>${mapstruct.version}</version>
202             </dependency>
203             <dependency>
204                 <groupId>net.logstash.logback</groupId>
205                 <artifactId>logstash-logback-encoder</artifactId>
206                 <version>7.0.1</version>
207             </dependency>
208             <dependency>
209                 <groupId>org.codehaus.janino</groupId>
210                 <artifactId>janino</artifactId>
211                 <version>3.1.7</version>
212             </dependency>
213         </dependencies>
214     </dependencyManagement>
215 </project>