Add docker and coverage report configuraion
[nonrtric/plt/rappmanager.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.springframework.boot</groupId>
7         <artifactId>spring-boot-starter-parent</artifactId>
8         <version>3.1.2</version>
9     </parent>
10     <groupId>com.oransc</groupId>
11     <artifactId>rappmanager</artifactId>
12     <version>0.0.1-SNAPSHOT</version>
13     <packaging>pom</packaging>
14     <name>rappmanager</name>
15     <description>Rapp Manager(ACM) in ORANSC</description>
16     <modules>
17         <module>rapp-manager-models</module>
18         <module>rapp-manager-acm</module>
19         <module>rapp-manager-sme</module>
20         <module>rapp-manager-application</module>
21     </modules>
22     <repositories>
23         <repository>
24             <id>onap-releases</id>
25             <name>onap-releases</name>
26             <url>https://nexus.onap.org/content/repositories/releases/</url>
27         </repository>
28     </repositories>
29     <properties>
30         <java.version>17</java.version>
31         <openapi.maven.version>6.6.0</openapi.maven.version>
32         <docker-maven-plugin>0.43.2</docker-maven-plugin>
33         <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
34     </properties>
35     <build>
36         <plugins>
37             <plugin>
38                 <groupId>org.apache.maven.plugins</groupId>
39                 <artifactId>maven-surefire-plugin</artifactId>
40                 <configuration>
41                     <skipTests>false</skipTests>
42                 </configuration>
43             </plugin>
44             <plugin>
45                 <groupId>org.jacoco</groupId>
46                 <artifactId>jacoco-maven-plugin</artifactId>
47                 <version>${jacoco-maven-plugin.version}</version>
48                 <executions>
49                     <execution>
50                         <id>default-prepare-agent</id>
51                         <goals>
52                             <goal>prepare-agent</goal>
53                         </goals>
54                     </execution>
55                     <execution>
56                         <id>default-report</id>
57                         <phase>prepare-package</phase>
58                         <goals>
59                             <goal>report</goal>
60                         </goals>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65     </build>
66     <issueManagement>
67         <system>JIRA</system>
68         <url>https://jira.o-ran-sc.org/</url>
69     </issueManagement>
70 </project>