4f574c6590b2e7bb6c7d20bfbc293e5d4e7b1d3f
[nonrtric/plt/ranpm.git] / pmproducer / 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>3.0.4</version>
30         <relativePath />
31     </parent>
32     <groupId>org.o-ran-sc.nonrtric.plt</groupId>
33     <artifactId>pmproducer</artifactId>
34     <version>1.1.0-SNAPSHOT</version>
35     <name>NONRTRIC RAN PM Producer</name>
36     <description>Filtering and distribution of PM data to rApps subscribers (O-RAN SC NONRTRIC)</description>
37     <licenses>
38         <license>
39             <name>The Apache Software License, Version 2.0</name>
40             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
41         </license>
42     </licenses>
43     <repositories>
44         <repository>
45             <id>onap-releases</id>
46             <name>onap-releases</name>
47             <url>https://nexus.onap.org/content/repositories/releases/</url>
48         </repository>
49     </repositories>
50     <properties>
51         <java.version>17</java.version>
52         <gson.version>2.9.0</gson.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         <swagger-codegen-maven-plugin.version>3.0.11</swagger-codegen-maven-plugin.version>
58         <docker-maven-plugin>0.30.0</docker-maven-plugin>
59         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
60         <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
61         <springdoc.version>2.0.2</springdoc.version>
62         <springdoc.openapi-ui.version>1.6.14</springdoc.openapi-ui.version>
63         <exec.skip>true</exec.skip>
64
65     </properties>
66     <dependencies>
67         <dependency>
68             <groupId>org.springdoc</groupId>
69             <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
70             <version>${springdoc.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.springdoc</groupId>
74             <artifactId>springdoc-openapi-ui</artifactId>
75             <version>${springdoc.openapi-ui.version}</version>
76         </dependency>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-web</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.springframework.boot</groupId>
83             <artifactId>spring-boot-starter-thymeleaf</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.springframework.boot</groupId>
87             <artifactId>spring-boot-starter-webflux</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.springframework</groupId>
91             <artifactId>spring-webflux</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>com.google.code.gson</groupId>
95             <artifactId>gson</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.projectlombok</groupId>
99             <artifactId>lombok</artifactId>
100             <scope>provided</scope>
101         </dependency>
102         <!-- Actuator dependencies -->
103         <dependency>
104             <groupId>org.springframework.boot</groupId>
105             <artifactId>spring-boot-starter-actuator</artifactId>
106         </dependency>
107         <!-- For development help -->
108         <dependency>
109             <groupId>org.springframework.boot</groupId>
110             <artifactId>spring-boot-devtools</artifactId>
111             <optional>true</optional>
112         </dependency>
113         <dependency>
114             <groupId>org.springframework.boot</groupId>
115             <artifactId>spring-boot-configuration-processor</artifactId>
116             <optional>true</optional>
117         </dependency>
118         <!-- TEST -->
119         <!-- https://mvnrepository.com/artifact/com.github.erosb/everit-json-schema -->
120         <dependency>
121             <groupId>com.github.erosb</groupId>
122             <artifactId>everit-json-schema</artifactId>
123             <version>1.12.1</version>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>com.schibsted.spt.data</groupId>
128             <artifactId>jslt</artifactId>
129             <version>0.1.11</version>
130         </dependency>
131         <dependency>
132             <groupId>com.jayway.jsonpath</groupId>
133             <artifactId>json-path</artifactId>
134             <version>2.7.0</version>
135         </dependency>
136         <dependency>
137             <groupId>org.springframework.boot</groupId>
138             <artifactId>spring-boot-starter-test</artifactId>
139             <scope>test</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.awaitility</groupId>
143             <artifactId>awaitility</artifactId>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>io.projectreactor</groupId>
148             <artifactId>reactor-test</artifactId>
149             <scope>test</scope>
150         </dependency>
151         <dependency>
152             <groupId>org.junit.jupiter</groupId>
153             <artifactId>junit-jupiter-engine</artifactId>
154             <scope>test</scope>
155         </dependency>
156         <dependency>
157             <groupId>org.mockito</groupId>
158             <artifactId>mockito-junit-jupiter</artifactId>
159             <scope>test</scope>
160         </dependency>
161         <dependency>
162             <groupId>org.mockito</groupId>
163             <artifactId>mockito-core</artifactId>
164             <scope>test</scope>
165         </dependency>
166         <dependency>
167             <groupId>org.mockito</groupId>
168             <artifactId>mockito-inline</artifactId>
169             <scope>test</scope>
170         </dependency>
171         <dependency>
172             <groupId>io.projectreactor.kafka</groupId>
173             <artifactId>reactor-kafka</artifactId>
174             <version>1.3.13</version>
175         </dependency>
176         <dependency>
177             <groupId>com.google.guava</groupId>
178             <artifactId>guava</artifactId>
179             <version>31.0.1-jre</version>
180         </dependency>
181         <dependency>
182             <groupId>software.amazon.awssdk</groupId>
183             <artifactId>s3</artifactId>
184             <version>2.17.292</version>
185         </dependency>
186     </dependencies>
187     <build>
188         <plugins>
189             <plugin>
190                 <groupId>org.springframework.boot</groupId>
191                 <artifactId>spring-boot-maven-plugin</artifactId>
192             </plugin>
193             <plugin>
194                 <groupId>net.revelc.code.formatter</groupId>
195                 <artifactId>formatter-maven-plugin</artifactId>
196                 <version>${formatter-maven-plugin.version}</version>
197                 <configuration>
198                     <configFile>${project.basedir}/eclipse-formatter.xml</configFile>
199                 </configuration>
200                 <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
201                                         spotless:apply process-sources -->
202             </plugin>
203             <plugin>
204                 <groupId>com.diffplug.spotless</groupId>
205                 <artifactId>spotless-maven-plugin</artifactId>
206                 <version>${spotless-maven-plugin.version}</version>
207                 <configuration>
208                     <java>
209                         <removeUnusedImports />
210                         <importOrder>
211                             <order>com,java,javax,org</order>
212                         </importOrder>
213                     </java>
214                 </configuration>
215                 <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
216                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate
217                                         source files -->
218             </plugin>
219             <plugin>
220                 <groupId>org.apache.maven.plugins</groupId>
221                 <artifactId>maven-surefire-plugin</artifactId>
222                 <configuration>
223                     <skipTests>false</skipTests>
224                 </configuration>
225             </plugin>
226             <plugin>
227                 <artifactId>maven-failsafe-plugin</artifactId>
228             </plugin>
229             <plugin>
230                 <groupId>org.codehaus.mojo</groupId>
231                 <artifactId>build-helper-maven-plugin</artifactId>
232                 <executions>
233                     <execution>
234                         <id>add-source</id>
235                         <phase>generate-sources</phase>
236                         <goals>
237                             <goal>add-source</goal>
238                         </goals>
239                         <configuration>
240                             <sources>
241                                 <source>${project.build.directory}/generated-sources/annotations/</source>
242                             </sources>
243                         </configuration>
244                     </execution>
245                 </executions>
246             </plugin>
247             <plugin>
248                 <groupId>org.jacoco</groupId>
249                 <artifactId>jacoco-maven-plugin</artifactId>
250                 <version>${jacoco-maven-plugin.version}</version>
251                 <executions>
252                     <execution>
253                         <id>default-prepare-agent</id>
254                         <goals>
255                             <goal>prepare-agent</goal>
256                         </goals>
257                     </execution>
258                     <execution>
259                         <id>default-report</id>
260                         <phase>prepare-package</phase>
261                         <goals>
262                             <goal>report</goal>
263                         </goals>
264                     </execution>
265                 </executions>
266             </plugin>
267             <plugin>
268                 <groupId>io.swagger.codegen.v3</groupId>
269                 <artifactId>swagger-codegen-maven-plugin</artifactId>
270                 <version>${swagger-codegen-maven-plugin.version}</version>
271                 <executions>
272                     <execution>
273                         <phase>test</phase>
274                         <goals>
275                             <goal>generate</goal>
276                         </goals>
277                         <configuration>
278                             <inputSpec>${project.basedir}/api/api.json</inputSpec>
279                             <language>openapi-yaml</language>
280                             <output>${project.basedir}/api</output>
281                             <configOptions>
282                                 <outputFile>api.yaml</outputFile>
283                             </configOptions>
284                         </configuration>
285                     </execution>
286                 </executions>
287             </plugin>
288             <plugin>
289                 <groupId>io.fabric8</groupId>
290                 <artifactId>docker-maven-plugin</artifactId>
291                 <version>${docker-maven-plugin}</version>
292                 <inherited>false</inherited>
293                 <executions>
294                     <execution>
295                         <id>generate-nonrtric-plt-pmproducer-image</id>
296                         <phase>package</phase>
297                         <goals>
298                             <goal>build</goal>
299                         </goals>
300                         <configuration>
301                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
302                             <images>
303                                 <image>
304                                     <name>o-ran-sc/nonrtric-plt-pmproducer:${project.version}</name>
305                                     <build>
306                                         <cleanup>try</cleanup>
307                                         <contextDir>${basedir}</contextDir>
308                                         <dockerFile>Dockerfile</dockerFile>
309                                         <args>
310                                             <JAR>${project.build.finalName}.jar</JAR>
311                                         </args>
312                                         <tags>
313                                             <tag>${project.version}</tag>
314                                         </tags>
315                                     </build>
316                                 </image>
317                             </images>
318                         </configuration>
319                     </execution>
320                     <execution>
321                         <id>push-nonrtric-plt-pmproducer-image</id>
322                         <goals>
323                             <goal>build</goal>
324                             <goal>push</goal>
325                         </goals>
326                         <configuration>
327                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
328                             <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
329                             <images>
330                                 <image>
331                                     <name>o-ran-sc/nonrtric-plt-pmproducer:${project.version}</name>
332                                     <build>
333                                         <contextDir>${basedir}</contextDir>
334                                         <dockerFile>Dockerfile</dockerFile>
335                                         <args>
336                                             <JAR>${project.build.finalName}.jar</JAR>
337                                         </args>
338                                         <tags>
339                                             <tag>${project.version}</tag>
340                                             <tag>latest</tag>
341                                         </tags>
342                                     </build>
343                                 </image>
344                             </images>
345                         </configuration>
346                     </execution>
347                 </executions>
348             </plugin>
349             <!-- support sonar in multi-module project -->
350             <plugin>
351                 <groupId>org.sonarsource.scanner.maven</groupId>
352                 <artifactId>sonar-maven-plugin</artifactId>
353                 <version>${sonar-maven-plugin.version}</version>
354             </plugin>
355         </plugins>
356     </build>
357     <issueManagement>
358         <system>JIRA</system>
359         <url>https://jira.o-ran-sc.org/</url>
360     </issueManagement>
361 </project>