Merge "Remove unnecessary version properties"
[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     <properties>
33         <groovy.version>3.0.8</groovy.version>
34         <nexusproxy>https://nexus.onap.org</nexusproxy>
35         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
36         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
37         <sonar.skip>true</sonar.skip>
38         <testcontainers.version>1.15.1</testcontainers.version>
39     </properties>
40
41     <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
54     <dependencyManagement>
55         <dependencies>
56             <dependency>
57                 <groupId>org.springframework.boot</groupId>
58                 <artifactId>spring-boot-dependencies</artifactId>
59                 <version>2.5.0</version>
60                 <type>pom</type>
61                 <scope>import</scope>
62             </dependency>
63             <dependency>
64                 <groupId>org.springframework.cloud</groupId>
65                 <artifactId>spring-cloud-dependencies</artifactId>
66                 <version>2020.0.2</version>
67                 <type>pom</type>
68                 <scope>import</scope>
69             </dependency>
70             <dependency>
71                 <groupId>org.opendaylight.yangtools</groupId>
72                 <artifactId>yangtools-artifacts</artifactId>
73                 <version>5.0.7</version>
74                 <type>pom</type>
75                 <scope>import</scope>
76             </dependency>
77             <dependency>
78                 <groupId>io.swagger.core.v3</groupId>
79                 <artifactId>swagger-annotations</artifactId>
80                 <version>2.1.4</version>
81             </dependency>
82             <!---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>
88             <dependency>
89                 <groupId>io.springfox</groupId>
90                 <artifactId>springfox-boot-starter</artifactId>
91                 <version>3.0.0</version>
92             </dependency>
93             <dependency>
94                 <groupId>com.vladmihalcea</groupId>
95                 <artifactId>hibernate-types-52</artifactId>
96                 <version>2.10.0</version>
97             </dependency>
98             <dependency>
99                 <groupId>org.antlr</groupId>
100                 <artifactId>antlr4-runtime</artifactId>
101                 <version>4.9.2</version>
102             </dependency>
103             <dependency>
104                 <groupId>org.codehaus.groovy</groupId>
105                 <artifactId>groovy</artifactId>
106                 <version>${groovy.version}</version>
107             </dependency>
108             <dependency>
109                 <groupId>org.codehaus.groovy</groupId>
110                 <artifactId>groovy-json</artifactId>
111                 <version>${groovy.version}</version>
112             </dependency>
113             <dependency>
114                 <groupId>org.spockframework</groupId>
115                 <artifactId>spock-core</artifactId>
116                 <version>2.0-M5-groovy-3.0</version>
117             </dependency>
118             <dependency>
119                 <groupId>org.spockframework</groupId>
120                 <artifactId>spock-spring</artifactId>
121                 <version>2.0-M5-groovy-3.0</version>
122             </dependency>
123             <dependency>
124                 <groupId>cglib</groupId>
125                 <artifactId>cglib-nodep</artifactId>
126                 <version>3.1</version>
127             </dependency>
128             <dependency>
129                 <groupId>org.apache.commons</groupId>
130                 <artifactId>commons-lang3</artifactId>
131                 <version>3.11</version>
132             </dependency>
133             <dependency>
134                 <groupId>org.modelmapper</groupId>
135                 <artifactId>modelmapper</artifactId>
136                 <version>2.3.8</version>
137             </dependency>
138             <dependency>
139                 <groupId>org.testcontainers</groupId>
140                 <artifactId>kafka</artifactId>
141                 <version>${testcontainers.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>org.testcontainers</groupId>
145                 <artifactId>postgresql</artifactId>
146                 <version>${testcontainers.version}</version>
147             </dependency>
148             <dependency>
149                 <groupId>org.testcontainers</groupId>
150                 <artifactId>spock</artifactId>
151                 <version>${testcontainers.version}</version>
152             </dependency>
153             <dependency>
154                 <groupId>com.github.spotbugs</groupId>
155                 <artifactId>spotbugs</artifactId>
156                 <version>4.2.0</version>
157             </dependency>
158             <dependency>
159                 <groupId>org.liquibase</groupId>
160                 <artifactId>liquibase-core</artifactId>
161                 <version>4.3.1</version>
162             </dependency>
163             <dependency>
164                 <groupId>com.tngtech.archunit</groupId>
165                 <artifactId>archunit-junit5</artifactId>
166                 <version>0.18.0</version>
167                 <scope>test</scope>
168             </dependency>
169         </dependencies>
170     </dependencyManagement>
171 </project>