| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ ============LICENSE_START======================================================= |
| ~ Copyright (C) 2023 Nordix Foundation. All rights reserved. |
| ~ Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved. |
| ~ ================================================================================ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| ~ ============LICENSE_END========================================================= |
| --> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-parent</artifactId> |
| <version>3.0.4</version> |
| </parent> |
| <groupId>org.o-ran-sc.nonrtric.plt.ranpm</groupId> |
| <artifactId>datafile-collector</artifactId> |
| <version>1.1.1-SNAPSHOT</version> |
| <packaging>jar</packaging> |
| <name>NONRTRIC RAN PM Data File Collector</name> |
| <description>File Collector for collecting RAN PM files from RAN functions (O-RAN SC NONRTRIC)</description> |
| <properties> |
| <java.version>17</java.version> |
| <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> |
| <gson.version>2.9.1</gson.version> |
| <docker-maven-plugin>0.30.0</docker-maven-plugin> |
| <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version> |
| <springdoc.version>2.0.2</springdoc.version> |
| <springdoc.openapi-ui.version>1.6.14</springdoc.openapi-ui.version> |
| <exec.skip>true</exec.skip> |
| |
| <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version> |
| |
| </properties> |
| <dependencies> |
| <dependency> |
| <groupId>org.springdoc</groupId> |
| <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| <version>${springdoc.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springdoc</groupId> |
| <artifactId>springdoc-openapi-ui</artifactId> |
| <version>${springdoc.openapi-ui.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.code.gson</groupId> |
| <artifactId>gson</artifactId> |
| <version>${gson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.projectreactor.kafka</groupId> |
| <artifactId>reactor-kafka</artifactId> |
| <version>1.3.9</version> |
| </dependency> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.awaitility</groupId> |
| <artifactId>awaitility</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpasyncclient</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-configuration-processor</artifactId> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-web</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-webmvc</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-webflux</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-autoconfigure</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents.core5</groupId> |
| <artifactId>httpcore5</artifactId> |
| </dependency> |
| <!-- Actuator dependencies --> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-actuator</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>s3</artifactId> |
| <version>2.17.292</version> |
| </dependency> |
| <!--TESTS |
| DEPENDENCIES --> |
| <dependency> |
| <groupId>io.projectreactor</groupId> |
| <artifactId>reactor-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-junit-jupiter</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-inline</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-net</groupId> |
| <artifactId>commons-net</artifactId> |
| <version>3.9.0</version> |
| </dependency> |
| <dependency> |
| <groupId>com.jcraft</groupId> |
| <artifactId>jsch</artifactId> |
| <version>0.1.55</version> |
| </dependency> |
| <dependency> |
| <groupId>io.projectreactor.netty</groupId> |
| <artifactId>reactor-netty</artifactId> |
| <version>1.0.22</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-maven-plugin</artifactId> |
| <configuration> |
| <finalName>${project.artifactId}</finalName> |
| <mainClass>org.oran.datafile.MainApp</mainClass> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>build-info</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>io.fabric8</groupId> |
| <artifactId>docker-maven-plugin</artifactId> |
| <version>${docker-maven-plugin}</version> |
| <inherited>false</inherited> |
| <executions> |
| <execution> |
| <id>generate-image</id> |
| <phase>package</phase> |
| <goals> |
| <goal>build</goal> |
| </goals> |
| <configuration> |
| <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry> |
| <images> |
| <image> |
| <name> |
| o-ran-sc/nonrtric-plt-ranpm-datafilecollector:${project.version}</name> |
| <build> |
| <cleanup>try</cleanup> |
| <contextDir>${basedir}</contextDir> |
| <dockerFile>Dockerfile</dockerFile> |
| <args> |
| <JAR>${project.build.finalName}.jar</JAR> |
| </args> |
| <tags> |
| <tag>${project.version}</tag> |
| </tags> |
| </build> |
| </image> |
| </images> |
| </configuration> |
| </execution> |
| <execution> |
| <id>push-image</id> |
| <goals> |
| <goal>build</goal> |
| <goal>push</goal> |
| </goals> |
| <configuration> |
| <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry> |
| <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry> |
| <images> |
| <image> |
| <name> |
| o-ran-sc/nonrtric-plt-ranpm-datafilecollector:${project.version}</name> |
| <build> |
| <contextDir>${basedir}</contextDir> |
| <dockerFile>Dockerfile</dockerFile> |
| <args> |
| <JAR>${project.build.finalName}.jar</JAR> |
| </args> |
| <tags> |
| <tag>${project.version}</tag> |
| <tag>latest</tag> |
| </tags> |
| </build> |
| </image> |
| </images> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>com.diffplug.spotless</groupId> |
| <artifactId>spotless-maven-plugin</artifactId> |
| <version>1.18.0</version> |
| <configuration> |
| <java> |
| <removeUnusedImports /> |
| <importOrder> |
| <order>com,java,javax,org</order> |
| </importOrder> |
| </java> |
| </configuration> |
| <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use |
| mvn spotless:apply to rewrite source files use mvn spotless:check to validate |
| source files --> |
| </plugin> |
| <plugin> |
| <groupId>net.revelc.code.formatter</groupId> |
| <artifactId>formatter-maven-plugin</artifactId> |
| <version>2.8.1</version> |
| <configuration> |
| <configFile>${project.basedir}/onap-java-formatter.xml</configFile> |
| </configuration> |
| <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format |
| to rewrite source files use mvn formatter:validate to validate source files --> |
| </plugin> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>${jacoco-maven-plugin.version}</version> |
| <executions> |
| <execution> |
| <id>default-prepare-agent</id> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>default-report</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>report</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.sonarsource.scanner.maven</groupId> |
| <artifactId>sonar-maven-plugin</artifactId> |
| <version>${sonar-maven-plugin.version}</version> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |