aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 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> |
aravind.est | 940b5ec | 2023-07-31 16:59:43 +0100 | [diff] [blame] | 8 | <version>3.1.2</version> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 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> |
aravind.est | b228914 | 2023-08-02 10:07:08 +0100 | [diff] [blame] | 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> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 29 | <properties> |
| 30 | <java.version>17</java.version> |
| 31 | <openapi.maven.version>6.6.0</openapi.maven.version> |
aravind.est | cc47a6f | 2023-08-04 17:38:29 +0100 | [diff] [blame^] | 32 | <docker-maven-plugin>0.43.2</docker-maven-plugin> |
| 33 | <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 34 | </properties> |
aravind.est | cc47a6f | 2023-08-04 17:38:29 +0100 | [diff] [blame^] | 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> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 70 | </project> |