aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
aravind.est | c7d8cf9 | 2023-08-22 17:50:58 +0100 | [diff] [blame^] | 2 | <!-- |
| 3 | * ========================LICENSE_START================================= |
| 4 | * O-RAN-SC |
| 5 | * %% |
| 6 | * Copyright (C) 2023 Nordix Foundation |
| 7 | * %% |
| 8 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | * you may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, software |
| 15 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | * See the License for the specific language governing permissions and |
| 18 | * limitations under the License. |
| 19 | * ========================LICENSE_END=================================== |
| 20 | --> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.springframework.boot</groupId> |
| 26 | <artifactId>spring-boot-starter-parent</artifactId> |
aravind.est | 940b5ec | 2023-07-31 16:59:43 +0100 | [diff] [blame] | 27 | <version>3.1.2</version> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 28 | </parent> |
aravind.est | c7d8cf9 | 2023-08-22 17:50:58 +0100 | [diff] [blame^] | 29 | <groupId>org.o-ran-sc.nonrtric.plt</groupId> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 30 | <artifactId>rappmanager</artifactId> |
| 31 | <version>0.0.1-SNAPSHOT</version> |
| 32 | <packaging>pom</packaging> |
aravind.est | c7d8cf9 | 2023-08-22 17:50:58 +0100 | [diff] [blame^] | 33 | <name>NONRTRIC rAppmanager</name> |
| 34 | <description>O-RAN SC rApp Management function.</description> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 35 | <modules> |
| 36 | <module>rapp-manager-models</module> |
| 37 | <module>rapp-manager-acm</module> |
| 38 | <module>rapp-manager-sme</module> |
| 39 | <module>rapp-manager-application</module> |
| 40 | </modules> |
aravind.est | b228914 | 2023-08-02 10:07:08 +0100 | [diff] [blame] | 41 | <repositories> |
| 42 | <repository> |
| 43 | <id>onap-releases</id> |
| 44 | <name>onap-releases</name> |
| 45 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 46 | </repository> |
| 47 | </repositories> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 48 | <properties> |
| 49 | <java.version>17</java.version> |
| 50 | <openapi.maven.version>6.6.0</openapi.maven.version> |
aravind.est | fbe2221 | 2023-08-09 11:11:15 +0100 | [diff] [blame] | 51 | <docker-maven-plugin>0.30.0</docker-maven-plugin> |
aravind.est | cc47a6f | 2023-08-04 17:38:29 +0100 | [diff] [blame] | 52 | <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version> |
aravind.est | fbe2221 | 2023-08-09 11:11:15 +0100 | [diff] [blame] | 53 | <onap.acm.models.version>6.4.2</onap.acm.models.version> |
| 54 | <openapi.jackson.databind.nullable.version>0.2.6</openapi.jackson.databind.nullable.version> |
| 55 | <spring.statemachine.version>3.2.1</spring.statemachine.version> |
| 56 | <spring.context.version>6.0.8</spring.context.version> |
| 57 | <javax.validation.api.version>2.0.1.Final</javax.validation.api.version> |
| 58 | <javax.annotation.api.version>1.3.2</javax.annotation.api.version> |
| 59 | <javax.servlet.api.version>2.5</javax.servlet.api.version> |
| 60 | <io.swagger.version>2.2.9</io.swagger.version> |
| 61 | <slf4j.version>2.0.7</slf4j.version> |
| 62 | <apache.httpcore.version>4.3.2</apache.httpcore.version> |
| 63 | <exec-maven-plugin.version>3.1.0</exec-maven-plugin.version> |
aravind.est | b25bd33 | 2023-08-23 18:28:06 +0100 | [diff] [blame] | 64 | <apache.compress.version>1.22</apache.compress.version> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 65 | </properties> |
aravind.est | cc47a6f | 2023-08-04 17:38:29 +0100 | [diff] [blame] | 66 | <build> |
| 67 | <plugins> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-surefire-plugin</artifactId> |
| 71 | <configuration> |
| 72 | <skipTests>false</skipTests> |
| 73 | </configuration> |
| 74 | </plugin> |
| 75 | <plugin> |
| 76 | <groupId>org.jacoco</groupId> |
| 77 | <artifactId>jacoco-maven-plugin</artifactId> |
| 78 | <version>${jacoco-maven-plugin.version}</version> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <id>default-prepare-agent</id> |
| 82 | <goals> |
| 83 | <goal>prepare-agent</goal> |
| 84 | </goals> |
| 85 | </execution> |
| 86 | <execution> |
| 87 | <id>default-report</id> |
| 88 | <phase>prepare-package</phase> |
| 89 | <goals> |
| 90 | <goal>report</goal> |
| 91 | </goals> |
| 92 | </execution> |
| 93 | </executions> |
| 94 | </plugin> |
| 95 | </plugins> |
| 96 | </build> |
| 97 | <issueManagement> |
| 98 | <system>JIRA</system> |
| 99 | <url>https://jira.o-ran-sc.org/</url> |
| 100 | </issueManagement> |
aravind.est | 347f178 | 2023-07-14 09:53:41 +0100 | [diff] [blame] | 101 | </project> |