1 <?xml version="1.0" encoding="UTF-8"?>
3 * ========================LICENSE_START=================================
6 * Copyright (C) 2023 Nordix Foundation
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.o-ran-sc.nonrtric.plt</groupId>
27 <artifactId>rappmanager</artifactId>
28 <version>0.0.1-SNAPSHOT</version>
31 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
32 <artifactId>rapp-manager-application</artifactId>
35 <maven.compiler.source>${java.version}</maven.compiler.source>
36 <maven.compiler.target>${java.version}</maven.compiler.target>
37 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
43 <artifactId>rapp-manager-models</artifactId>
44 <version>${project.version}</version>
47 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
48 <artifactId>rapp-manager-acm</artifactId>
49 <version>${project.version}</version>
52 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
53 <artifactId>rapp-manager-sme</artifactId>
54 <version>${project.version}</version>
57 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
58 <artifactId>rapp-manager-dme</artifactId>
59 <version>${project.version}</version>
62 <groupId>org.onap.policy.clamp</groupId>
63 <artifactId>policy-clamp-models</artifactId>
64 <version>${onap.acm.models.version}</version>
67 <groupId>org.springframework.boot</groupId>
68 <artifactId>spring-boot-starter-data-jpa</artifactId>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-starter-aop</artifactId>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-security</artifactId>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-validation</artifactId>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-starter-webflux</artifactId>
89 <groupId>org.springframework.boot</groupId>
90 <artifactId>spring-boot-starter-actuator</artifactId>
93 <groupId>org.springframework.boot</groupId>
94 <artifactId>spring-boot-starter-web</artifactId>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-cache</artifactId>
101 <groupId>org.springframework.boot</groupId>
102 <artifactId>spring-boot-configuration-processor</artifactId>
103 <optional>true</optional>
106 <groupId>org.springframework.statemachine</groupId>
107 <artifactId>spring-statemachine-core</artifactId>
108 <version>${spring.statemachine.version}</version>
111 <groupId>org.springframework.statemachine</groupId>
112 <artifactId>spring-statemachine-test</artifactId>
113 <version>${spring.statemachine.version}</version>
117 <groupId>org.aspectj</groupId>
118 <artifactId>aspectjweaver</artifactId>
119 <scope>compile</scope>
122 <groupId>org.projectlombok</groupId>
123 <artifactId>lombok</artifactId>
124 <optional>true</optional>
127 <groupId>org.openapitools</groupId>
128 <artifactId>jackson-databind-nullable</artifactId>
129 <version>${openapi.jackson.databind.nullable.version}</version>
131 <!-- Bean Validation API support -->
133 <groupId>javax.validation</groupId>
134 <artifactId>validation-api</artifactId>
135 <version>${javax.validation.api.version}</version>
138 <groupId>javax.annotation</groupId>
139 <artifactId>javax.annotation-api</artifactId>
140 <version>${javax.annotation.api.version}</version>
143 <groupId>io.swagger.core.v3</groupId>
144 <artifactId>swagger-annotations</artifactId>
145 <version>${io.swagger.version}</version>
148 <groupId>io.swagger.core.v3</groupId>
149 <artifactId>swagger-models</artifactId>
150 <version>${io.swagger.version}</version>
153 <groupId>javax.servlet</groupId>
154 <artifactId>servlet-api</artifactId>
155 <version>${javax.servlet.api.version}</version>
156 <scope>provided</scope>
159 <groupId>org.springframework.boot</groupId>
160 <artifactId>spring-boot-starter-test</artifactId>
168 <groupId>org.springframework.boot</groupId>
169 <artifactId>spring-boot-maven-plugin</artifactId>
172 <groupId>io.fabric8</groupId>
173 <artifactId>docker-maven-plugin</artifactId>
174 <version>${docker-maven-plugin}</version>
175 <inherited>false</inherited>
178 <id>generate-nonrtric-plt-rappmanager-image</id>
179 <phase>package</phase>
184 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
188 o-ran-sc/nonrtric-plt-rappmanager:${project.version}
191 <cleanup>try</cleanup>
192 <contextDir>${project.basedir}</contextDir>
193 <dockerFile>Dockerfile</dockerFile>
195 <JAR>${project.build.finalName}.jar</JAR>
198 <tag>${project.version}</tag>
206 <id>push-nonrtric-plt-rappmanager-image</id>
212 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
213 <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
217 o-ran-sc/nonrtric-plt-rappmanager:${project.version}
220 <contextDir>${project.basedir}</contextDir>
221 <dockerFile>Dockerfile</dockerFile>
223 <JAR>${project.build.finalName}.jar</JAR>
226 <tag>${project.version}</tag>