blob: e512d7c4d851b60dba9d9a2fc8a709f91bf3751e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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>3.1.2</version>
</parent>
<groupId>com.oransc</groupId>
<artifactId>rappmanager</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>rappmanager</name>
<description>Rapp Manager(ACM) in ORANSC</description>
<modules>
<module>rapp-manager-models</module>
<module>rapp-manager-acm</module>
<module>rapp-manager-sme</module>
<module>rapp-manager-application</module>
</modules>
<repositories>
<repository>
<id>onap-releases</id>
<name>onap-releases</name>
<url>https://nexus.onap.org/content/repositories/releases/</url>
</repository>
</repositories>
<properties>
<java.version>17</java.version>
<openapi.maven.version>6.6.0</openapi.maven.version>
<docker-maven-plugin>0.43.2</docker-maven-plugin>
<jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
</configuration>
</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>
</plugins>
</build>
<issueManagement>
<system>JIRA</system>
<url>https://jira.o-ran-sc.org/</url>
</issueManagement>
</project>