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.onap.policy.clamp</groupId>
58 <artifactId>policy-clamp-models</artifactId>
59 <version>${onap.acm.models.version}</version>
62 <groupId>org.springframework.boot</groupId>
63 <artifactId>spring-boot-starter-data-jpa</artifactId>
66 <groupId>org.springframework.boot</groupId>
67 <artifactId>spring-boot-starter-aop</artifactId>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-security</artifactId>
74 <groupId>org.springframework.boot</groupId>
75 <artifactId>spring-boot-starter-validation</artifactId>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-webflux</artifactId>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-actuator</artifactId>
88 <groupId>org.springframework.boot</groupId>
89 <artifactId>spring-boot-starter-web</artifactId>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-starter-cache</artifactId>
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-configuration-processor</artifactId>
98 <optional>true</optional>
101 <groupId>org.springframework.statemachine</groupId>
102 <artifactId>spring-statemachine-core</artifactId>
103 <version>${spring.statemachine.version}</version>
106 <groupId>org.springframework.statemachine</groupId>
107 <artifactId>spring-statemachine-test</artifactId>
108 <version>${spring.statemachine.version}</version>
112 <groupId>org.aspectj</groupId>
113 <artifactId>aspectjweaver</artifactId>
114 <scope>compile</scope>
117 <groupId>org.projectlombok</groupId>
118 <artifactId>lombok</artifactId>
119 <optional>true</optional>
122 <groupId>org.openapitools</groupId>
123 <artifactId>jackson-databind-nullable</artifactId>
124 <version>${openapi.jackson.databind.nullable.version}</version>
126 <!-- Bean Validation API support -->
128 <groupId>javax.validation</groupId>
129 <artifactId>validation-api</artifactId>
130 <version>${javax.validation.api.version}</version>
133 <groupId>javax.annotation</groupId>
134 <artifactId>javax.annotation-api</artifactId>
135 <version>${javax.annotation.api.version}</version>
138 <groupId>io.swagger.core.v3</groupId>
139 <artifactId>swagger-annotations</artifactId>
140 <version>${io.swagger.version}</version>
143 <groupId>io.swagger.core.v3</groupId>
144 <artifactId>swagger-models</artifactId>
145 <version>${io.swagger.version}</version>
148 <groupId>javax.servlet</groupId>
149 <artifactId>servlet-api</artifactId>
150 <version>${javax.servlet.api.version}</version>
151 <scope>provided</scope>
154 <groupId>org.springframework.boot</groupId>
155 <artifactId>spring-boot-starter-test</artifactId>
163 <groupId>org.springframework.boot</groupId>
164 <artifactId>spring-boot-maven-plugin</artifactId>
167 <groupId>io.fabric8</groupId>
168 <artifactId>docker-maven-plugin</artifactId>
169 <version>${docker-maven-plugin}</version>
170 <inherited>false</inherited>
173 <id>generate-nonrtric-plt-rappmanager-image</id>
174 <phase>package</phase>
179 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
183 o-ran-sc/nonrtric-plt-rappmanager:${project.version}
186 <cleanup>try</cleanup>
187 <contextDir>${project.basedir}</contextDir>
188 <dockerFile>Dockerfile</dockerFile>
190 <JAR>${project.build.finalName}.jar</JAR>
193 <tag>${project.version}</tag>
201 <id>push-nonrtric-plt-rappmanager-image</id>
207 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
208 <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
212 o-ran-sc/nonrtric-plt-rappmanager:${project.version}
215 <contextDir>${project.basedir}</contextDir>
216 <dockerFile>Dockerfile</dockerFile>
218 <JAR>${project.build.finalName}.jar</JAR>
221 <tag>${project.version}</tag>