Add info types for producer and consumer in rApp package
[nonrtric/plt/rappmanager.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 -->
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>
27         <version>3.1.4</version>
28     </parent>
29     <groupId>org.o-ran-sc.nonrtric.plt</groupId>
30     <artifactId>rappmanager</artifactId>
31     <version>0.0.1-SNAPSHOT</version>
32     <packaging>pom</packaging>
33     <name>NONRTRIC rAppmanager</name>
34     <description>O-RAN SC rApp Management function.</description>
35     <modules>
36         <module>rapp-manager-models</module>
37         <module>rapp-manager-acm</module>
38         <module>rapp-manager-sme</module>
39         <module>rapp-manager-dme</module>
40         <module>rapp-manager-application</module>
41     </modules>
42     <repositories>
43         <repository>
44             <id>onap-releases</id>
45             <name>onap-releases</name>
46             <url>https://nexus.onap.org/content/repositories/releases/</url>
47         </repository>
48     </repositories>
49     <properties>
50         <java.version>17</java.version>
51         <openapi.maven.version>7.0.1</openapi.maven.version>
52         <docker-maven-plugin>0.30.0</docker-maven-plugin>
53         <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
54         <onap.acm.models.version>6.4.3</onap.acm.models.version>
55         <openapi.jackson.databind.nullable.version>0.2.6</openapi.jackson.databind.nullable.version>
56         <spring.statemachine.version>3.2.1</spring.statemachine.version>
57         <spring.context.version>6.0.8</spring.context.version>
58         <javax.validation.api.version>2.0.1.Final</javax.validation.api.version>
59         <javax.annotation.api.version>1.3.2</javax.annotation.api.version>
60         <javax.servlet.api.version>2.5</javax.servlet.api.version>
61         <io.swagger.version>2.2.9</io.swagger.version>
62         <slf4j.version>2.0.7</slf4j.version>
63         <apache.httpcore.version>4.3.2</apache.httpcore.version>
64         <exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
65         <apache.compress.version>1.22</apache.compress.version>
66     </properties>
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-surefire-plugin</artifactId>
72                 <configuration>
73                     <skipTests>false</skipTests>
74                 </configuration>
75             </plugin>
76             <plugin>
77                 <groupId>org.jacoco</groupId>
78                 <artifactId>jacoco-maven-plugin</artifactId>
79                 <version>${jacoco-maven-plugin.version}</version>
80                 <executions>
81                     <execution>
82                         <id>default-prepare-agent</id>
83                         <goals>
84                             <goal>prepare-agent</goal>
85                         </goals>
86                     </execution>
87                     <execution>
88                         <id>default-report</id>
89                         <phase>prepare-package</phase>
90                         <goals>
91                             <goal>report</goal>
92                         </goals>
93                     </execution>
94                 </executions>
95             </plugin>
96         </plugins>
97     </build>
98     <issueManagement>
99         <system>JIRA</system>
100         <url>https://jira.o-ran-sc.org/</url>
101     </issueManagement>
102 </project>