Storage of PM Data
[nonrtric.git] / pmlog / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * ========================LICENSE_START=================================
4 * O-RAN-SC
5 * %%
6 * Copyright (C) 2023 Nordix Foundation
7 * %%
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ========================LICENSE_END===================================
20 -->
21 <project
22     xmlns="http://maven.apache.org/POM/4.0.0"
23     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <groupId>org.springframework.boot</groupId>
28         <artifactId>spring-boot-starter-parent</artifactId>
29         <version>2.7.8</version>
30         <relativePath />
31     </parent>
32     <groupId>org.o-ran-sc.nonrtric.plt</groupId>
33     <artifactId>pmlog</artifactId>
34     <version>1.0.0-SNAPSHOT</version>
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     <repositories>
42         <repository>
43             <id>onap-releases</id>
44             <name>onap-releases</name>
45             <url>https://nexus.onap.org/content/repositories/releases/</url>
46         </repository>
47     </repositories>
48     <properties>
49         <java.version>11</java.version>
50         <springfox.version>3.0.0</springfox.version>
51         <gson.version>2.9.0</gson.version>
52         <swagger.version>2.2.1</swagger.version>
53         <json.version>20211205</json.version>
54         <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
55         <formatter-maven-plugin.version>2.12.2</formatter-maven-plugin.version>
56         <spotless-maven-plugin.version>1.24.3</spotless-maven-plugin.version>
57         <docker-maven-plugin>0.30.0</docker-maven-plugin>
58         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
59         <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
60         <swagger-codegen-maven-plugin.version>3.0.11</swagger-codegen-maven-plugin.version>
61         <exec.skip>true</exec.skip>
62     </properties>
63     <dependencies>
64         <dependency>
65             <groupId>com.influxdb</groupId>
66             <artifactId>influxdb-client-java</artifactId>
67             <version>6.3.0</version>
68         </dependency>
69         <dependency>
70             <groupId>org.springframework.boot</groupId>
71             <artifactId>spring-boot-starter-web</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.springframework.boot</groupId>
75             <artifactId>spring-boot-starter-thymeleaf</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-webflux</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.springframework</groupId>
83             <artifactId>spring-webflux</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>io.swagger.core.v3</groupId>
87             <artifactId>swagger-jaxrs2</artifactId>
88             <version>${swagger.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>io.swagger.core.v3</groupId>
92             <artifactId>swagger-jaxrs2-servlet-initializer</artifactId>
93             <version>${swagger.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>com.google.code.gson</groupId>
97             <artifactId>gson</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.projectlombok</groupId>
101             <artifactId>lombok</artifactId>
102             <scope>provided</scope>
103         </dependency>
104         <!-- Actuator dependencies -->
105         <dependency>
106             <groupId>org.springframework.boot</groupId>
107             <artifactId>spring-boot-starter-actuator</artifactId>
108         </dependency>
109         <!--REQUIRED TO GENERATE DOCUMENTATION -->
110         <dependency>
111             <groupId>io.springfox</groupId>
112             <artifactId>springfox-swagger2</artifactId>
113             <version>${springfox.version}</version>
114         </dependency>
115         <dependency>
116             <groupId>io.springfox</groupId>
117             <artifactId>springfox-swagger-ui</artifactId>
118             <version>${springfox.version}</version>
119         </dependency>
120         <!-- For development help -->
121         <dependency>
122             <groupId>org.springframework.boot</groupId>
123             <artifactId>spring-boot-devtools</artifactId>
124             <optional>true</optional>
125         </dependency>
126         <dependency>
127             <groupId>org.springframework.boot</groupId>
128             <artifactId>spring-boot-configuration-processor</artifactId>
129             <optional>true</optional>
130         </dependency>
131         <!-- TEST -->
132         <!-- https://mvnrepository.com/artifact/com.github.erosb/everit-json-schema -->
133         <dependency>
134             <groupId>org.springdoc</groupId>
135             <artifactId>springdoc-openapi-ui</artifactId>
136             <version>1.6.3</version>
137             <scope>test</scope>
138         </dependency>
139         <dependency>
140             <groupId>com.github.erosb</groupId>
141             <artifactId>everit-json-schema</artifactId>
142             <version>1.12.1</version>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>com.schibsted.spt.data</groupId>
147             <artifactId>jslt</artifactId>
148             <version>0.1.11</version>
149         </dependency>
150         <dependency>
151             <groupId>com.jayway.jsonpath</groupId>
152             <artifactId>json-path</artifactId>
153             <version>2.7.0</version>
154         </dependency>
155         <dependency>
156             <groupId>org.springframework.boot</groupId>
157             <artifactId>spring-boot-starter-test</artifactId>
158             <scope>test</scope>
159         </dependency>
160         <dependency>
161             <groupId>org.awaitility</groupId>
162             <artifactId>awaitility</artifactId>
163             <scope>test</scope>
164         </dependency>
165         <dependency>
166             <groupId>io.projectreactor</groupId>
167             <artifactId>reactor-test</artifactId>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.junit.jupiter</groupId>
172             <artifactId>junit-jupiter-engine</artifactId>
173             <scope>test</scope>
174         </dependency>
175         <dependency>
176             <groupId>org.mockito</groupId>
177             <artifactId>mockito-junit-jupiter</artifactId>
178             <scope>test</scope>
179         </dependency>
180         <dependency>
181             <groupId>org.mockito</groupId>
182             <artifactId>mockito-core</artifactId>
183             <scope>test</scope>
184         </dependency>
185         <dependency>
186             <groupId>io.projectreactor.kafka</groupId>
187             <artifactId>reactor-kafka</artifactId>
188             <version>1.3.13</version>
189         </dependency>
190         <dependency>
191             <groupId>com.google.guava</groupId>
192             <artifactId>guava</artifactId>
193             <version>31.0.1-jre</version>
194         </dependency>
195         <dependency>
196             <groupId>software.amazon.awssdk</groupId>
197             <artifactId>s3</artifactId>
198             <version>2.17.292</version>
199         </dependency>
200     </dependencies>
201     <build>
202         <plugins>
203             <plugin>
204                 <groupId>org.springframework.boot</groupId>
205                 <artifactId>spring-boot-maven-plugin</artifactId>
206             </plugin>
207             <plugin>
208                 <groupId>net.revelc.code.formatter</groupId>
209                 <artifactId>formatter-maven-plugin</artifactId>
210                 <version>${formatter-maven-plugin.version}</version>
211                 <configuration>
212                     <configFile>${project.basedir}/eclipse-formatter.xml</configFile>
213                 </configuration>
214                 <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
215                                         spotless:apply process-sources -->
216             </plugin>
217             <plugin>
218                 <groupId>com.diffplug.spotless</groupId>
219                 <artifactId>spotless-maven-plugin</artifactId>
220                 <version>${spotless-maven-plugin.version}</version>
221                 <configuration>
222                     <java>
223                         <removeUnusedImports />
224                         <importOrder>
225                             <order>com,java,javax,org</order>
226                         </importOrder>
227                     </java>
228                 </configuration>
229                 <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
230                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate
231                                         source files -->
232             </plugin>
233             <plugin>
234                 <groupId>org.apache.maven.plugins</groupId>
235                 <artifactId>maven-surefire-plugin</artifactId>
236                 <configuration>
237                     <skipTests>false</skipTests>
238                 </configuration>
239             </plugin>
240             <plugin>
241                 <artifactId>maven-failsafe-plugin</artifactId>
242             </plugin>
243             <plugin>
244                 <groupId>org.codehaus.mojo</groupId>
245                 <artifactId>build-helper-maven-plugin</artifactId>
246                 <executions>
247                     <execution>
248                         <id>add-source</id>
249                         <phase>generate-sources</phase>
250                         <goals>
251                             <goal>add-source</goal>
252                         </goals>
253                         <configuration>
254                             <sources>
255                                 <source>${project.build.directory}/generated-sources/annotations/</source>
256                             </sources>
257                         </configuration>
258                     </execution>
259                 </executions>
260             </plugin>
261             <plugin>
262                 <groupId>org.jacoco</groupId>
263                 <artifactId>jacoco-maven-plugin</artifactId>
264                 <version>${jacoco-maven-plugin.version}</version>
265                 <executions>
266                     <execution>
267                         <id>default-prepare-agent</id>
268                         <goals>
269                             <goal>prepare-agent</goal>
270                         </goals>
271                     </execution>
272                     <execution>
273                         <id>default-report</id>
274                         <phase>prepare-package</phase>
275                         <goals>
276                             <goal>report</goal>
277                         </goals>
278                     </execution>
279                 </executions>
280             </plugin>
281             <plugin>
282                 <groupId>io.fabric8</groupId>
283                 <artifactId>docker-maven-plugin</artifactId>
284                 <version>${docker-maven-plugin}</version>
285                 <inherited>false</inherited>
286                 <executions>
287                     <execution>
288                         <id>generate-nonrtric-plt-pmlog-image</id>
289                         <phase>package</phase>
290                         <goals>
291                             <goal>build</goal>
292                         </goals>
293                         <configuration>
294                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
295                             <images>
296                                 <image>
297                                     <name>o-ran-sc/nonrtric-plt-pmlog:${project.version}</name>
298                                     <build>
299                                         <cleanup>try</cleanup>
300                                         <contextDir>${basedir}</contextDir>
301                                         <dockerFile>Dockerfile</dockerFile>
302                                         <args>
303                                             <JAR>${project.build.finalName}.jar</JAR>
304                                         </args>
305                                         <tags>
306                                             <tag>${project.version}</tag>
307                                         </tags>
308                                     </build>
309                                 </image>
310                             </images>
311                         </configuration>
312                     </execution>
313                     <execution>
314                         <id>push-nonrtric-plt-pmlog-image</id>
315                         <goals>
316                             <goal>build</goal>
317                             <goal>push</goal>
318                         </goals>
319                         <configuration>
320                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
321                             <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
322                             <images>
323                                 <image>
324                                     <name>o-ran-sc/nonrtric-plt-pmlog:${project.version}</name>
325                                     <build>
326                                         <contextDir>${basedir}</contextDir>
327                                         <dockerFile>Dockerfile</dockerFile>
328                                         <args>
329                                             <JAR>${project.build.finalName}.jar</JAR>
330                                         </args>
331                                         <tags>
332                                             <tag>${project.version}</tag>
333                                             <tag>latest</tag>
334                                         </tags>
335                                     </build>
336                                 </image>
337                             </images>
338                         </configuration>
339                     </execution>
340                 </executions>
341             </plugin>
342             <!-- support sonar in multi-module project -->
343             <plugin>
344                 <groupId>org.sonarsource.scanner.maven</groupId>
345                 <artifactId>sonar-maven-plugin</artifactId>
346                 <version>${sonar-maven-plugin.version}</version>
347             </plugin>
348             <plugin>
349                 <groupId>io.swagger.codegen.v3</groupId>
350                 <artifactId>swagger-codegen-maven-plugin</artifactId>
351                 <version>${swagger-codegen-maven-plugin.version}</version>
352                 <executions>
353                     <execution>
354                         <phase>test</phase>
355                         <goals>
356                             <goal>generate</goal>
357                         </goals>
358                         <configuration>
359                             <inputSpec>${project.basedir}/api/pmlog-api.json</inputSpec>
360                             <language>openapi-yaml</language>
361                             <output>${project.basedir}/api</output>
362                             <configOptions>
363                                 <outputFile>pmlog-api.yaml</outputFile>
364                             </configOptions>
365                         </configuration>
366                     </execution>
367                 </executions>
368             </plugin>
369         </plugins>
370     </build>
371     <issueManagement>
372         <system>JIRA</system>
373         <url>https://jira.o-ran-sc.org/</url>
374     </issueManagement>
375 </project>