5c2ff565eebfa1b753fc1e4c446a2078cc48d87e
[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   ================================================================================
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17   ============LICENSE_END=========================================================
18 -->
19 <project xmlns="http://maven.apache.org/POM/4.0.0"
20     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
23     <modelVersion>4.0.0</modelVersion>
24     <groupId>org.onap.cps</groupId>
25     <artifactId>cps-dependencies</artifactId>
26     <version>3.0.0-SNAPSHOT</version>
27     <packaging>pom</packaging>
28
29     <name>${project.groupId}:${project.artifactId}</name>
30     <description>This artifact contains dependencyManagement declarations of upstream versions.</description>
31
32     <repositories>
33         <repository>
34             <id>nordix-liquibase-repo</id>
35             <name>liquibase</name>
36             <url>https://artifactory.nordix.org/artifactory/liquibase</url>
37         </repository>
38     </repositories>
39
40     <properties>
41         <groovy.version>3.0.8</groovy.version>
42         <nexusproxy>https://nexus.onap.org</nexusproxy>
43         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
44         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
45         <sonar.skip>true</sonar.skip>
46         <testcontainers.version>1.15.1</testcontainers.version>
47         <mapstruct.version>1.4.2.Final</mapstruct.version>
48     </properties>
49
50     <distributionManagement>
51         <repository>
52             <id>ecomp-releases</id>
53             <name>ECOMP Release Repository</name>
54             <url>${nexusproxy}${releaseNexusPath}</url>
55         </repository>
56         <snapshotRepository>
57             <id>ecomp-snapshots</id>
58             <name>ECOMP Snapshot Repository</name>
59             <url>${nexusproxy}${snapshotNexusPath}</url>
60         </snapshotRepository>
61     </distributionManagement>
62
63     <dependencyManagement>
64         <dependencies>
65             <dependency>
66                 <groupId>org.springframework.boot</groupId>
67                 <artifactId>spring-boot-dependencies</artifactId>
68                 <version>2.5.5</version>
69                 <type>pom</type>
70                 <scope>import</scope>
71             </dependency>
72             <dependency>
73                 <groupId>org.springframework.cloud</groupId>
74                 <artifactId>spring-cloud-dependencies</artifactId>
75                 <version>2020.0.2</version>
76                 <type>pom</type>
77                 <scope>import</scope>
78             </dependency>
79             <dependency>
80                 <groupId>org.opendaylight.yangtools</groupId>
81                 <artifactId>yangtools-artifacts</artifactId>
82                 <version>6.0.1</version>
83                 <type>pom</type>
84                 <scope>import</scope>
85             </dependency>
86             <dependency>
87                 <groupId>io.swagger.core.v3</groupId>
88                 <artifactId>swagger-annotations</artifactId>
89                 <version>2.1.4</version>
90             </dependency>
91             <dependency>
92                 <groupId>io.springfox</groupId>
93                 <artifactId>springfox-boot-starter</artifactId>
94                 <version>3.0.0</version>
95             </dependency>
96             <dependency>
97                 <groupId>com.vladmihalcea</groupId>
98                 <artifactId>hibernate-types-52</artifactId>
99                 <version>2.10.0</version>
100             </dependency>
101             <dependency>
102                 <groupId>org.antlr</groupId>
103                 <artifactId>antlr4-runtime</artifactId>
104                 <version>4.9.2</version>
105             </dependency>
106             <dependency>
107                 <groupId>org.codehaus.groovy</groupId>
108                 <artifactId>groovy</artifactId>
109                 <version>${groovy.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>org.codehaus.groovy</groupId>
113                 <artifactId>groovy-json</artifactId>
114                 <version>${groovy.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>org.spockframework</groupId>
118                 <artifactId>spock-core</artifactId>
119                 <version>2.0-M5-groovy-3.0</version>
120             </dependency>
121             <dependency>
122                 <groupId>org.spockframework</groupId>
123                 <artifactId>spock-spring</artifactId>
124                 <version>2.0-M5-groovy-3.0</version>
125             </dependency>
126             <dependency>
127                 <groupId>cglib</groupId>
128                 <artifactId>cglib-nodep</artifactId>
129                 <version>3.1</version>
130             </dependency>
131             <dependency>
132                 <groupId>org.apache.commons</groupId>
133                 <artifactId>commons-lang3</artifactId>
134                 <version>3.11</version>
135             </dependency>
136             <dependency>
137                 <groupId>org.modelmapper</groupId>
138                 <artifactId>modelmapper</artifactId>
139                 <version>2.3.8</version>
140             </dependency>
141             <dependency>
142                 <groupId>org.jetbrains</groupId>
143                 <artifactId>annotations</artifactId>
144                 <version>22.0.0</version>
145             </dependency>
146             <dependency>
147                 <groupId>org.testcontainers</groupId>
148                 <artifactId>kafka</artifactId>
149                 <version>${testcontainers.version}</version>
150             </dependency>
151             <dependency>
152                 <groupId>org.testcontainers</groupId>
153                 <artifactId>postgresql</artifactId>
154                 <version>${testcontainers.version}</version>
155             </dependency>
156             <dependency>
157                 <groupId>org.testcontainers</groupId>
158                 <artifactId>spock</artifactId>
159                 <version>${testcontainers.version}</version>
160             </dependency>
161             <dependency>
162                 <groupId>com.github.spotbugs</groupId>
163                 <artifactId>spotbugs</artifactId>
164                 <version>4.2.0</version>
165             </dependency>
166             <dependency>
167                 <groupId>org.liquibase</groupId>
168                 <artifactId>liquibase-core</artifactId>
169                 <version>4.4.2-nordix</version>
170             </dependency>
171             <dependency>
172                 <groupId>com.tngtech.archunit</groupId>
173                 <artifactId>archunit-junit5</artifactId>
174                 <version>0.18.0</version>
175                 <scope>test</scope>
176             </dependency>
177             <dependency>
178                 <groupId>org.apache.logging.log4j</groupId>
179                 <artifactId>log4j-api</artifactId>
180                 <version>2.17.1</version>
181             </dependency>
182             <dependency>
183                 <groupId>org.apache.logging.log4j</groupId>
184                 <artifactId>log4j-to-slf4j</artifactId>
185                 <version>2.17.1</version>
186             </dependency>
187             <dependency>
188                 <groupId>org.mapstruct</groupId>
189                 <artifactId>mapstruct</artifactId>
190                 <version>${mapstruct.version}</version>
191             </dependency>
192             <dependency>
193                 <groupId>org.mapstruct</groupId>
194                 <artifactId>mapstruct-processor</artifactId>
195                 <version>${mapstruct.version}</version>
196             </dependency>
197         </dependencies>
198     </dependencyManagement>
199 </project>