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