fix clm job critical issues
[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         <antlr4-runtime.version>4.9.2</antlr4-runtime.version>
34         <cglib-nodep.version>3.1</cglib-nodep.version>
35         <commons-codec.version>1.15</commons-codec.version>
36         <commons-lang3.version>3.11</commons-lang3.version>
37         <groovy.version>3.0.8</groovy.version>
38         <hibernate-types.version>2.10.0</hibernate-types.version>
39         <liquibase.version>4.3.1</liquibase.version>
40         <nexusproxy>https://nexus.onap.org</nexusproxy>
41         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
42         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
43         <modelmapper.version>2.3.8</modelmapper.version>
44         <sonar.skip>true</sonar.skip>
45         <spock-core.version>2.0-M5-groovy-3.0</spock-core.version>
46         <spock-spring.version>2.0-M5-groovy-3.0</spock-spring.version>
47         <spotbugs.version>4.2.0</spotbugs.version>
48         <springboot.version>2.5.0</springboot.version>
49         <springboot.cloud.version>2020.0.2</springboot.cloud.version>
50         <springfox.version>3.0.0</springfox.version>
51         <swagger.version>2.1.4</swagger.version>
52         <testcontainers.version>1.15.1</testcontainers.version>
53         <yangtools.version>5.0.7</yangtools.version>
54     </properties>
55
56     <distributionManagement>
57         <repository>
58             <id>ecomp-releases</id>
59             <name>ECOMP Release Repository</name>
60             <url>${nexusproxy}${releaseNexusPath}</url>
61         </repository>
62         <snapshotRepository>
63             <id>ecomp-snapshots</id>
64             <name>ECOMP Snapshot Repository</name>
65             <url>${nexusproxy}${snapshotNexusPath}</url>
66         </snapshotRepository>
67     </distributionManagement>
68
69     <dependencyManagement>
70         <dependencies>
71             <dependency>
72                 <groupId>org.springframework.boot</groupId>
73                 <artifactId>spring-boot-dependencies</artifactId>
74                 <version>${springboot.version}</version>
75                 <type>pom</type>
76                 <scope>import</scope>
77             </dependency>
78             <dependency>
79                 <groupId>org.springframework.cloud</groupId>
80                 <artifactId>spring-cloud-dependencies</artifactId>
81                 <version>${springboot.cloud.version}</version>
82                 <type>pom</type>
83                 <scope>import</scope>
84             </dependency>
85             <dependency>
86                 <groupId>org.opendaylight.yangtools</groupId>
87                 <artifactId>yangtools-artifacts</artifactId>
88                 <version>${yangtools.version}</version>
89                 <type>pom</type>
90                 <scope>import</scope>
91             </dependency>
92             <dependency>
93                 <groupId>io.swagger.core.v3</groupId>
94                 <artifactId>swagger-annotations</artifactId>
95                 <version>${swagger.version}</version>
96             </dependency>
97             <!---To be removed once swagger-codegen-maven-plugin is upgraded-->
98             <dependency>
99                 <groupId>io.swagger</groupId>
100                 <artifactId>swagger-annotations</artifactId>
101                 <version>1.6.2</version>
102             </dependency>
103             <dependency>
104                 <groupId>io.springfox</groupId>
105                 <artifactId>springfox-boot-starter</artifactId>
106                 <version>${springfox.version}</version>
107             </dependency>
108             <dependency>
109                 <groupId>com.vladmihalcea</groupId>
110                 <artifactId>hibernate-types-52</artifactId>
111                 <version>${hibernate-types.version}</version>
112             </dependency>
113             <dependency>
114                 <groupId>org.antlr</groupId>
115                 <artifactId>antlr4-runtime</artifactId>
116                 <version>${antlr4-runtime.version}</version>
117             </dependency>
118             <dependency>
119                 <groupId>org.codehaus.groovy</groupId>
120                 <artifactId>groovy</artifactId>
121                 <version>${groovy.version}</version>
122             </dependency>
123             <dependency>
124                 <groupId>org.codehaus.groovy</groupId>
125                 <artifactId>groovy-json</artifactId>
126                 <version>${groovy.version}</version>
127             </dependency>
128             <dependency>
129                 <groupId>org.spockframework</groupId>
130                 <artifactId>spock-core</artifactId>
131                 <version>${spock-core.version}</version>
132             </dependency>
133             <dependency>
134                 <groupId>org.spockframework</groupId>
135                 <artifactId>spock-spring</artifactId>
136                 <version>${spock-spring.version}</version>
137             </dependency>
138             <dependency>
139                 <groupId>cglib</groupId>
140                 <artifactId>cglib-nodep</artifactId>
141                 <version>${cglib-nodep.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>org.apache.commons</groupId>
145                 <artifactId>commons-lang3</artifactId>
146                 <version>${commons-lang3.version}</version>
147             </dependency>
148             <dependency>
149                 <groupId>org.modelmapper</groupId>
150                 <artifactId>modelmapper</artifactId>
151                 <version>${modelmapper.version}</version>
152             </dependency>
153             <dependency>
154                 <groupId>org.testcontainers</groupId>
155                 <artifactId>postgresql</artifactId>
156                 <version>${testcontainers.version}</version>
157             </dependency>
158             <dependency>
159                 <groupId>org.testcontainers</groupId>
160                 <artifactId>spock</artifactId>
161                 <version>${testcontainers.version}</version>
162             </dependency>
163             <dependency>
164                 <groupId>com.github.spotbugs</groupId>
165                 <artifactId>spotbugs</artifactId>
166                 <version>${spotbugs.version}</version>
167             </dependency>
168             <dependency>
169                 <groupId>org.liquibase</groupId>
170                 <artifactId>liquibase-core</artifactId>
171                 <version>${liquibase.version}</version>
172             </dependency>
173         </dependencies>
174     </dependencyManagement>
175 </project>