blob: 8be6e1ccc8472f8cdf4997828de850f26ce9adf6 [file] [log] [blame]
Claudio David Gasparini70c17022020-10-26 10:12:10 +01001<?xml version="1.0" encoding="UTF-8"?>
ToineSiebelinkc37678a2021-05-20 16:44:21 +01002<!--
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-->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010019<project xmlns="http://maven.apache.org/POM/4.0.0"
Rishi.Chail48830f12020-11-09 03:28:44 +000020 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">
Claudio David Gasparini70c17022020-10-26 10:12:10 +010022
23 <modelVersion>4.0.0</modelVersion>
24 <groupId>org.onap.cps</groupId>
25 <artifactId>cps-dependencies</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000026 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010027 <packaging>pom</packaging>
28
29 <name>${project.groupId}:${project.artifactId}</name>
30 <description>This artifact contains dependencyManagement declarations of upstream versions.</description>
31
32 <properties>
shivasubedi8a74ced2021-04-29 12:48:05 +010033 <groovy.version>3.0.8</groovy.version>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010034 <nexusproxy>https://nexus.onap.org</nexusproxy>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010035 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
36 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
Claudio David Gasparinid45b2dc2021-01-13 13:28:07 +010037 <sonar.skip>true</sonar.skip>
Ruslan Kashapovbf02f202020-12-17 10:38:53 +020038 <testcontainers.version>1.15.1</testcontainers.version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010039 </properties>
40
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010041 <distributionManagement>
42 <repository>
43 <id>ecomp-releases</id>
44 <name>ECOMP Release Repository</name>
45 <url>${nexusproxy}${releaseNexusPath}</url>
46 </repository>
47 <snapshotRepository>
48 <id>ecomp-snapshots</id>
49 <name>ECOMP Snapshot Repository</name>
50 <url>${nexusproxy}${snapshotNexusPath}</url>
51 </snapshotRepository>
52 </distributionManagement>
53
Claudio David Gasparini70c17022020-10-26 10:12:10 +010054 <dependencyManagement>
55 <dependencies>
56 <dependency>
57 <groupId>org.springframework.boot</groupId>
58 <artifactId>spring-boot-dependencies</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010059 <version>2.5.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010060 <type>pom</type>
61 <scope>import</scope>
62 </dependency>
63 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010064 <groupId>org.springframework.cloud</groupId>
65 <artifactId>spring-cloud-dependencies</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010066 <version>2020.0.2</version>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010067 <type>pom</type>
68 <scope>import</scope>
69 </dependency>
70 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010071 <groupId>org.opendaylight.yangtools</groupId>
72 <artifactId>yangtools-artifacts</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010073 <version>5.0.7</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010074 <type>pom</type>
75 <scope>import</scope>
76 </dependency>
77 <dependency>
78 <groupId>io.swagger.core.v3</groupId>
79 <artifactId>swagger-annotations</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010080 <version>2.1.4</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010081 </dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010082 <!---To be removed once swagger-codegen-maven-plugin is upgraded-->
83 <dependency>
84 <groupId>io.swagger</groupId>
85 <artifactId>swagger-annotations</artifactId>
86 <version>1.6.2</version>
87 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010088 <dependency>
puthuparambil.aditya47598112020-11-02 11:31:39 +000089 <groupId>io.springfox</groupId>
puthuparambil.aditya52cff682020-11-05 11:34:41 +000090 <artifactId>springfox-boot-starter</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010091 <version>3.0.0</version>
puthuparambil.aditya47598112020-11-02 11:31:39 +000092 </dependency>
93 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010094 <groupId>com.vladmihalcea</groupId>
95 <artifactId>hibernate-types-52</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010096 <version>2.10.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010097 </dependency>
98 <dependency>
ToineSiebelinkc37678a2021-05-20 16:44:21 +010099 <groupId>org.antlr</groupId>
100 <artifactId>antlr4-runtime</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100101 <version>4.9.2</version>
ToineSiebelinkc37678a2021-05-20 16:44:21 +0100102 </dependency>
103 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100104 <groupId>org.codehaus.groovy</groupId>
105 <artifactId>groovy</artifactId>
106 <version>${groovy.version}</version>
107 </dependency>
108 <dependency>
shivasubedi8a74ced2021-04-29 12:48:05 +0100109 <groupId>org.codehaus.groovy</groupId>
110 <artifactId>groovy-json</artifactId>
111 <version>${groovy.version}</version>
112 </dependency>
113 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100114 <groupId>org.spockframework</groupId>
115 <artifactId>spock-core</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100116 <version>2.0-M5-groovy-3.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100117 </dependency>
118 <dependency>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +0000119 <groupId>org.spockframework</groupId>
120 <artifactId>spock-spring</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100121 <version>2.0-M5-groovy-3.0</version>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +0000122 </dependency>
123 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100124 <groupId>cglib</groupId>
125 <artifactId>cglib-nodep</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100126 <version>3.1</version>
Claudio David Gasparini1bd1c6c2020-11-08 22:31:43 +0100127 </dependency>
128 <dependency>
129 <groupId>org.apache.commons</groupId>
130 <artifactId>commons-lang3</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100131 <version>3.11</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100132 </dependency>
Rishi.Chail48830f12020-11-09 03:28:44 +0000133 <dependency>
134 <groupId>org.modelmapper</groupId>
135 <artifactId>modelmapper</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100136 <version>2.3.8</version>
Rishi.Chail48830f12020-11-09 03:28:44 +0000137 </dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200138 <dependency>
139 <groupId>org.testcontainers</groupId>
Renu Kumariff52b942021-05-27 23:16:32 -0400140 <artifactId>kafka</artifactId>
141 <version>${testcontainers.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>org.testcontainers</groupId>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200145 <artifactId>postgresql</artifactId>
146 <version>${testcontainers.version}</version>
147 </dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100148 <dependency>
ToineSiebelink28066622021-01-27 10:47:04 +0000149 <groupId>org.testcontainers</groupId>
150 <artifactId>spock</artifactId>
151 <version>${testcontainers.version}</version>
152 </dependency>
153 <dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100154 <groupId>com.github.spotbugs</groupId>
155 <artifactId>spotbugs</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100156 <version>4.2.0</version>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100157 </dependency>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +0000158 <dependency>
159 <groupId>org.liquibase</groupId>
160 <artifactId>liquibase-core</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100161 <version>4.3.1</version>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +0000162 </dependency>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100163 <dependency>
164 <groupId>com.tngtech.archunit</groupId>
165 <artifactId>archunit-junit5</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100166 <version>0.18.0</version>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100167 <scope>test</scope>
168 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100169 </dependencies>
170 </dependencyManagement>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200171</project>