1 <?xml version="1.0" encoding="UTF-8"?>
3 * ========================LICENSE_START=================================
6 * Copyright (C) 2023 Nordix Foundation
7 * Copyright (C) 2023-2024 OpenInfra Foundation Europe. All rights reserved.
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ========================LICENSE_END===================================
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
27 <groupId>org.o-ran-sc.nonrtric.plt</groupId>
28 <artifactId>rappmanager</artifactId>
29 <version>0.2.0-SNAPSHOT</version>
32 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
33 <artifactId>rapp-manager-models</artifactId>
36 <maven.compiler.source>${java.version}</maven.compiler.source>
37 <maven.compiler.target>${java.version}</maven.compiler.target>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43 <groupId>org.springframework</groupId>
44 <artifactId>spring-context</artifactId>
45 <version>${spring.context.version}</version>
48 <groupId>org.springframework</groupId>
49 <artifactId>spring-web</artifactId>
50 <version>${spring.context.version}</version>
53 <groupId>org.springframework.statemachine</groupId>
54 <artifactId>spring-statemachine-core</artifactId>
55 <version>${spring.statemachine.version}</version>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-json</artifactId>
62 <groupId>org.springframework.statemachine</groupId>
63 <artifactId>spring-statemachine-test</artifactId>
64 <version>${spring.statemachine.version}</version>
68 <groupId>org.slf4j</groupId>
69 <artifactId>slf4j-api</artifactId>
70 <version>${slf4j.version}</version>
73 <groupId>org.projectlombok</groupId>
74 <artifactId>lombok</artifactId>
75 <optional>true</optional>
78 <groupId>org.apache.commons</groupId>
79 <artifactId>commons-compress</artifactId>
80 <version>${apache.compress.version}</version>
83 <groupId>org.onap.policy.clamp</groupId>
84 <artifactId>policy-clamp-models</artifactId>
85 <version>${onap.acm.models.version}</version>
88 <groupId>com.google.code.gson</groupId>
89 <artifactId>gson</artifactId>
92 <groupId>com.google.guava</groupId>
93 <artifactId>guava</artifactId>
94 <version>${guava.version}</version>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-test</artifactId>
102 <groupId>org.apache.httpcomponents</groupId>
103 <artifactId>httpcore</artifactId>
104 <version>${apache.httpcore.version}</version>