[DCAEGEN2]Release SDK libraries version 1.9.3
[dcaegen2/services/sdk.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 Copyright (c) 2022 Nokia. All rights reserved.
5 Copyright (C) 2022 AT&T Intellectual Property. All rights reserved.
6 Copyright (c) 2023 Deutsche Telekom AG. All rights reserved.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License"); you may not
9 use this file except in compliance with the License. You may obtain a copy
10 of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
11 by applicable law or agreed to in writing, software distributed under the
12 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
13 OF ANY KIND, either express or implied. See the License for the specific
14 language governing permissions and limitations under the License.
15 ============LICENSE_END=========================================================
16 -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20     <parent>
21         <groupId>org.onap.oparent</groupId>
22         <artifactId>oparent</artifactId>
23         <version>2.0.0</version>
24         <relativePath/>
25     </parent>
26
27     <groupId>org.onap.dcaegen2.services</groupId>
28     <artifactId>sdk</artifactId>
29     <version>${revision}</version>
30
31     <name>dcaegen2-services-sdk</name>
32     <description>Common SDK repo for all DCAE Services</description>
33     <packaging>pom</packaging>
34
35     <licenses>
36         <license>
37             <name>The Apache Software License, Version 2.0</name>
38             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39         </license>
40     </licenses>
41
42     <profiles>
43         <profile>
44             <id>default</id>
45             <activation>
46                 <activeByDefault>true</activeByDefault>
47             </activation>
48             <build>
49                 <plugins>
50                     <plugin>
51                         <groupId>org.apache.maven.plugins</groupId>
52                         <artifactId>maven-failsafe-plugin</artifactId>
53                         <configuration>
54                             <skipITs>true</skipITs>
55                         </configuration>
56                     </plugin>
57                 </plugins>
58             </build>
59         </profile>
60         <profile>
61             <id>integration-pairwise</id>
62             <build>
63                 <plugins>
64                     <plugin>
65                         <groupId>org.apache.maven.plugins</groupId>
66                         <artifactId>maven-surefire-plugin</artifactId>
67                         <configuration>
68                             <skipTests>true</skipTests>
69                         </configuration>
70                     </plugin>
71                 </plugins>
72             </build>
73         </profile>
74     </profiles>
75
76     <properties>
77         <java.version>11</java.version>
78         <junit-jupiter.version>5.9.0</junit-jupiter.version>
79         <junit-vintage.version>5.7.0</junit-vintage.version>
80         <junit-platform.version>1.3.1</junit-platform.version>
81         <immutables.version>2.9.0</immutables.version>
82         <assertj-core.version>3.12.2</assertj-core.version>
83         <reactor.bom.version>2020.0.1</reactor.bom.version>
84         <slf4j.version>1.7.25</slf4j.version>
85         <logback.version>1.2.11</logback.version>
86         <mockito.version>2.28.2</mockito.version>
87         <protobuf.version>4.0.0-rc-2</protobuf.version>
88         <vavr.version>0.10.2</vavr.version>
89         <commons-text.version>1.6</commons-text.version>
90         <jetbrains-annotations.version>16.0.3</jetbrains-annotations.version>
91         <protoc-jar-maven-plugin.version>3.6.0.2</protoc-jar-maven-plugin.version>
92         <testcontainers.version>1.15.1</testcontainers.version>
93         <spring.boot.version>2.7.2</spring.boot.version>
94         <system.rules.version>1.17.2</system.rules.version>
95         <openapi4j.version>1.0.3</openapi4j.version>
96         <mockserver-client.version>5.11.2</mockserver-client.version>
97         <sonar.coverage.jacoco.xmlReportPaths>
98             ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
99         </sonar.coverage.jacoco.xmlReportPaths>
100         <revision>1.9.3-SNAPSHOT</revision>
101     </properties>
102
103     <modules>
104         <module>rest-services</module>
105         <module>services</module>
106         <module>security</module> 
107         <module>standardization</module>
108         <module>services/common</module>
109     </modules>
110
111     <build>
112         <plugins>
113             <plugin>
114                 <artifactId>maven-javadoc-plugin</artifactId>
115                 <configuration>
116                     <!-- minimize console output messages -->
117                     <quiet>true</quiet>
118                     <verbose>false</verbose>
119                     <useStandardDocletOptions>false</useStandardDocletOptions>
120                 </configuration>
121                 <executions>
122                     <execution>
123                         <id>aggregate</id>
124                         <phase>site</phase>
125                         <goals>
126                             <goal>aggregate</goal>
127                         </goals>
128                     </execution>
129                     <execution>
130                         <id>attach-javadoc</id>
131                         <goals>
132                             <goal>jar</goal>
133                         </goals>
134                     </execution>
135                 </executions>
136             </plugin>
137             <plugin>
138                 <!-- configuration taken intact from oparent -->
139                 <groupId>org.apache.maven.plugins</groupId>
140                 <artifactId>maven-failsafe-plugin</artifactId>
141             </plugin>
142         </plugins>
143
144         <pluginManagement>
145             <plugins>
146                 <plugin>
147                     <groupId>org.apache.maven.plugins</groupId>
148                     <artifactId>maven-resources-plugin</artifactId>
149                     <version>3.1.0</version>
150                     <configuration>
151                         <encoding>${project.build.sourceEncoding}</encoding>
152                     </configuration>
153                 </plugin>
154                 <plugin>
155                     <groupId>org.apache.maven.plugins</groupId>
156                     <artifactId>maven-compiler-plugin</artifactId>
157                     <version>3.8.0</version>
158                     <configuration>
159                         <source>${java.version}</source>
160                         <target>${java.version}</target>
161                         <encoding>${project.build.sourceEncoding}</encoding>
162                         <showWarnings>true</showWarnings>
163                         <showDeprecation>true</showDeprecation>
164                     </configuration>
165                 </plugin>
166                 <plugin>
167                     <groupId>org.apache.maven.plugins</groupId>
168                     <artifactId>maven-surefire-plugin</artifactId>
169                     <version>3.0.0-M3</version>
170                 </plugin>
171                 <plugin>
172                     <artifactId>maven-javadoc-plugin</artifactId>
173                     <version>3.0.1</version>
174                     <configuration>
175                         <additionalJOptions>
176                             <additionalJOption>-Xdoclint:none</additionalJOption>
177                         </additionalJOptions>
178                     </configuration>
179                 </plugin>
180                 <plugin>
181                     <artifactId>maven-project-info-reports-plugin</artifactId>
182                     <version>2.9</version>
183                 </plugin>
184                 <plugin>
185                     <groupId>org.codehaus.mojo</groupId>
186                     <artifactId>build-helper-maven-plugin</artifactId>
187                     <version>1.7</version>
188                 </plugin>
189                 <plugin>
190                     <groupId>com.github.os72</groupId>
191                     <artifactId>protoc-jar-maven-plugin</artifactId>
192                     <version>${protoc-jar-maven-plugin.version}</version>
193                 </plugin>
194             </plugins>
195         </pluginManagement>
196     </build>
197
198     <reporting>
199         <plugins>
200             <plugin>
201                 <artifactId>maven-project-info-reports-plugin</artifactId>
202                 <reportSets>
203                     <reportSet>
204                         <reports>
205                             <report>dependencies</report>
206                             <report>license</report>
207                         </reports>
208                     </reportSet>
209                 </reportSets>
210             </plugin>
211         </plugins>
212     </reporting>
213
214     <dependencyManagement>
215         <dependencies>
216             <dependency>
217                 <groupId>com.google.protobuf</groupId>
218                 <artifactId>protobuf-java</artifactId>
219                 <version>${protobuf.version}</version>
220             </dependency>
221             <dependency>
222                 <groupId>org.immutables</groupId>
223                 <artifactId>value</artifactId>
224                 <version>${immutables.version}</version>
225                 <scope>provided</scope>
226             </dependency>
227             <dependency>
228                 <groupId>org.immutables</groupId>
229                 <artifactId>gson</artifactId>
230                 <version>${immutables.version}</version>
231             </dependency>
232             <dependency>
233                 <groupId>io.vavr</groupId>
234                 <artifactId>vavr</artifactId>
235                 <version>${vavr.version}</version>
236             </dependency>
237             <dependency>
238                 <groupId>org.apache.commons</groupId>
239                 <artifactId>commons-text</artifactId>
240                 <version>${commons-text.version}</version>
241             </dependency>
242             <dependency>
243                 <groupId>org.slf4j</groupId>
244                 <artifactId>jul-to-slf4j</artifactId>
245                 <version>${slf4j.version}</version>
246             </dependency>
247             <dependency>
248                 <groupId>org.slf4j</groupId>
249                 <artifactId>log4j-over-slf4j</artifactId>
250                 <version>${slf4j.version}</version>
251             </dependency>
252             <dependency>
253                 <groupId>org.slf4j</groupId>
254                 <artifactId>slf4j-api</artifactId>
255                 <version>${slf4j.version}</version>
256             </dependency>
257             <dependency>
258                 <artifactId>spring-boot-dependencies</artifactId>
259                 <groupId>org.springframework.boot</groupId>
260                 <version>${spring.boot.version}</version>
261                 <type>pom</type>
262                 <scope>import</scope>
263             </dependency>
264             <dependency>
265                 <groupId>org.jetbrains</groupId>
266                 <artifactId>annotations</artifactId>
267                 <version>${jetbrains-annotations.version}</version>
268             </dependency>
269             <dependency>
270                 <groupId>org.openapi4j</groupId>
271                 <artifactId>openapi-schema-validator</artifactId>
272                 <version>${openapi4j.version}</version>
273             </dependency>
274             <dependency>
275                 <groupId>io.projectreactor</groupId>
276                 <artifactId>reactor-bom</artifactId>
277                 <version>${reactor.bom.version}</version>
278                 <type>pom</type>
279                 <scope>import</scope>
280             </dependency>
281             <dependency>
282                 <groupId>ch.qos.logback</groupId>
283                 <artifactId>logback-classic</artifactId>
284                 <version>${logback.version}</version>
285                 <scope>runtime</scope>
286             </dependency>
287             <dependency>
288                 <groupId>org.slf4j</groupId>
289                 <artifactId>jcl-over-slf4j</artifactId>
290                 <version>1.7.26</version>
291                 <scope>runtime</scope>
292             </dependency>
293
294             <dependency>
295                 <groupId>com.github.stefanbirkner</groupId>
296                 <artifactId>system-rules</artifactId>
297                 <version>${system.rules.version}</version>
298                 <scope>test</scope>
299             </dependency>
300             <dependency>
301                 <groupId>org.mockito</groupId>
302                 <artifactId>mockito-core</artifactId>
303                 <version>${mockito.version}</version>
304                 <scope>test</scope>
305             </dependency>
306             <dependency>
307                 <groupId>org.junit.jupiter</groupId>
308                 <artifactId>junit-jupiter-engine</artifactId>
309                 <version>${junit-jupiter.version}</version>
310                 <scope>test</scope>
311             </dependency>
312             <dependency>
313                 <groupId>org.junit.jupiter</groupId>
314                 <artifactId>junit-jupiter-api</artifactId>
315                 <version>${junit-jupiter.version}</version>
316                 <scope>test</scope>
317             </dependency>
318             <dependency>
319                 <groupId>org.assertj</groupId>
320                 <artifactId>assertj-core</artifactId>
321                 <version>${assertj-core.version}</version>
322                 <scope>test</scope>
323             </dependency>
324             <dependency>
325                 <groupId>org.testcontainers</groupId>
326                 <artifactId>testcontainers</artifactId>
327                 <version>${testcontainers.version}</version>
328                 <scope>test</scope>
329             </dependency>
330             <dependency>
331                 <groupId>org.testcontainers</groupId>
332                 <artifactId>junit-jupiter</artifactId>
333                 <version>${testcontainers.version}</version>
334                 <scope>test</scope>
335             </dependency>
336         </dependencies>
337     </dependencyManagement>
338 </project>