<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
* ========================LICENSE_START================================= | |
* O-RAN-SC | |
* %% | |
* Copyright (C) 2020 Nordix Foundation | |
* %% | |
* 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 https://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>2.3.4.RELEASE</version> | |
<relativePath /> | |
</parent> | |
<groupId>org.o-ran-sc.nonrtric</groupId> | |
<artifactId>r-app-catalogue</artifactId> | |
<version>1.1.0-SNAPSHOT</version> | |
<licenses> | |
<license> | |
<name>The Apache Software License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
</license> | |
</licenses> | |
<properties> | |
<java.version>11</java.version> | |
<swagger-annotations.version>1.5.22</swagger-annotations.version> | |
<springfox.version>2.9.2</springfox.version> | |
<jackson-databind-nullable.version>0.2.1</jackson-databind-nullable.version> | |
<openapi-generator-maven-plugin.version>4.3.1</openapi-generator-maven-plugin.version> | |
<swagger-codegen-maven-plugin.version>3.0.11</swagger-codegen-maven-plugin.version> | |
<formatter-maven-plugin.version>2.12.2</formatter-maven-plugin.version> | |
<spotless-maven-plugin.version>1.24.3</spotless-maven-plugin.version> | |
<jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version> | |
<docker-maven-plugin.version>0.30.0</docker-maven-plugin.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>io.swagger</groupId> | |
<artifactId>swagger-annotations</artifactId> | |
<version>${swagger-annotations.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-annotations</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-beans</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-autoconfigure</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-swagger2</artifactId> | |
<version>${springfox.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-core</artifactId> | |
<version>${springfox.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-spring-web</artifactId> | |
<version>${springfox.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-spi</artifactId> | |
<version>${springfox.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.assertj</groupId> | |
<artifactId>assertj-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tomcat.embed</groupId> | |
<artifactId>tomcat-embed-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.openapitools</groupId> | |
<artifactId>jackson-databind-nullable</artifactId> | |
<version>${jackson-databind-nullable.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.validation</groupId> | |
<artifactId>validation-api</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-databind</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.yaml</groupId> | |
<artifactId>snakeyaml</artifactId> | |
<scope>runtime</scope> | |
</dependency> | |
<!-- TEST --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.junit.jupiter</groupId> | |
<artifactId>junit-jupiter-api</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-core</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.apache.httpcomponents</groupId> | |
<artifactId>httpclient</artifactId> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.openapitools</groupId> | |
<artifactId>openapi-generator-maven-plugin</artifactId> | |
<version>${openapi-generator-maven-plugin.version}</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>generate</goal> | |
</goals> | |
<configuration> | |
<inputSpec>${project.basedir}/api/rac-api.json</inputSpec> | |
<generatorName>spring</generatorName> | |
<apiPackage>org.oransc.rappcatalogue.api</apiPackage> | |
<modelPackage>org.oransc.rappcatalogue.model</modelPackage> | |
<invokerPackage>org.oransc.rappcatalogue</invokerPackage> | |
<configOptions> | |
<delegatePattern>true</delegatePattern> | |
<unhandledException>true</unhandledException> | |
</configOptions> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>io.swagger.codegen.v3</groupId> | |
<artifactId>swagger-codegen-maven-plugin</artifactId> | |
<version>${swagger-codegen-maven-plugin.version}</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>generate</goal> | |
</goals> | |
<configuration> | |
<inputSpec>${project.basedir}/api/rac-api.json</inputSpec> | |
<language>openapi-yaml</language> | |
<output>${project.basedir}/api/</output> | |
<configOptions> | |
<outputFile>rac-api.yaml</outputFile> | |
</configOptions> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>net.revelc.code.formatter</groupId> | |
<artifactId>formatter-maven-plugin</artifactId> | |
<version>${formatter-maven-plugin.version}</version> | |
<configuration> | |
<configFile>${project.basedir}/eclipse-formatter.xml</configFile> | |
</configuration> | |
<!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format | |
spotless:apply process-sources --> | |
</plugin> | |
<plugin> | |
<groupId>com.diffplug.spotless</groupId> | |
<artifactId>spotless-maven-plugin</artifactId> | |
<version>${spotless-maven-plugin.version}</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>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>io.fabric8</groupId> | |
<artifactId>docker-maven-plugin</artifactId> | |
<version>${docker-maven-plugin.version}</version> | |
<inherited>false</inherited> | |
<executions> | |
<execution> | |
<id>generate-r-app-catalogue-image</id> | |
<phase>package</phase> | |
<goals> | |
<goal>build</goal> | |
</goals> | |
<configuration> | |
<pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry> | |
<images> | |
<image> | |
<name>o-ran-sc/nonrtric-r-app-catalogue:${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-r-app-catalogue-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-r-app-catalogue:${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> | |
</plugins> | |
</build> | |
</project> |