CPS-503: liquibase self build option
[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>1.1.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     </properties>
48
49     <distributionManagement>
50         <repository>
51             <id>ecomp-releases</id>
52             <name>ECOMP Release Repository</name>
53             <url>${nexusproxy}${releaseNexusPath}</url>
54         </repository>
55         <snapshotRepository>
56             <id>ecomp-snapshots</id>
57             <name>ECOMP Snapshot Repository</name>
58             <url>${nexusproxy}${snapshotNexusPath}</url>
59         </snapshotRepository>
60     </distributionManagement>
61
62     <dependencyManagement>
63         <dependencies>
64             <dependency>
65                 <groupId>org.springframework.boot</groupId>
66                 <artifactId>spring-boot-dependencies</artifactId>
67                 <version>2.5.0</version>
68                 <type>pom</type>
69                 <scope>import</scope>
70             </dependency>
71             <dependency>
72                 <groupId>org.springframework.cloud</groupId>
73                 <artifactId>spring-cloud-dependencies</artifactId>
74                 <version>2020.0.2</version>
75                 <type>pom</type>
76                 <scope>import</scope>
77             </dependency>
78             <dependency>
79                 <groupId>org.opendaylight.yangtools</groupId>
80                 <artifactId>yangtools-artifacts</artifactId>
81                 <version>5.0.7</version>
82                 <type>pom</type>
83                 <scope>import</scope>
84             </dependency>
85             <dependency>
86                 <groupId>io.swagger.core.v3</groupId>
87                 <artifactId>swagger-annotations</artifactId>
88                 <version>2.1.4</version>
89             </dependency>
90             <!---To be removed once swagger-codegen-maven-plugin is upgraded-->
91             <dependency>
92                 <groupId>io.swagger</groupId>
93                 <artifactId>swagger-annotations</artifactId>
94                 <version>1.6.2</version>
95             </dependency>
96             <dependency>
97                 <groupId>io.springfox</groupId>
98                 <artifactId>springfox-boot-starter</artifactId>
99                 <version>3.0.0</version>
100             </dependency>
101             <dependency>
102                 <groupId>com.vladmihalcea</groupId>
103                 <artifactId>hibernate-types-52</artifactId>
104                 <version>2.10.0</version>
105             </dependency>
106             <dependency>
107                 <groupId>org.antlr</groupId>
108                 <artifactId>antlr4-runtime</artifactId>
109                 <version>4.9.2</version>
110             </dependency>
111             <dependency>
112                 <groupId>org.codehaus.groovy</groupId>
113                 <artifactId>groovy</artifactId>
114                 <version>${groovy.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>org.codehaus.groovy</groupId>
118                 <artifactId>groovy-json</artifactId>
119                 <version>${groovy.version}</version>
120             </dependency>
121             <dependency>
122                 <groupId>org.spockframework</groupId>
123                 <artifactId>spock-core</artifactId>
124                 <version>2.0-M5-groovy-3.0</version>
125             </dependency>
126             <dependency>
127                 <groupId>org.spockframework</groupId>
128                 <artifactId>spock-spring</artifactId>
129                 <version>2.0-M5-groovy-3.0</version>
130             </dependency>
131             <dependency>
132                 <groupId>cglib</groupId>
133                 <artifactId>cglib-nodep</artifactId>
134                 <version>3.1</version>
135             </dependency>
136             <dependency>
137                 <groupId>org.apache.commons</groupId>
138                 <artifactId>commons-lang3</artifactId>
139                 <version>3.11</version>
140             </dependency>
141             <dependency>
142                 <groupId>org.modelmapper</groupId>
143                 <artifactId>modelmapper</artifactId>
144                 <version>2.3.8</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         </dependencies>
178     </dependencyManagement>
179 </project>