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-models</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.springframework</groupId>
43 <artifactId>spring-context</artifactId>
44 <version>${spring.context.version}</version>
47 <groupId>org.springframework</groupId>
48 <artifactId>spring-web</artifactId>
49 <version>${spring.context.version}</version>
52 <groupId>org.springframework.statemachine</groupId>
53 <artifactId>spring-statemachine-core</artifactId>
54 <version>${spring.statemachine.version}</version>
57 <groupId>org.springframework.statemachine</groupId>
58 <artifactId>spring-statemachine-test</artifactId>
59 <version>${spring.statemachine.version}</version>
63 <groupId>org.slf4j</groupId>
64 <artifactId>slf4j-api</artifactId>
65 <version>${slf4j.version}</version>
68 <groupId>org.projectlombok</groupId>
69 <artifactId>lombok</artifactId>
70 <optional>true</optional>
73 <groupId>org.apache.commons</groupId>
74 <artifactId>commons-compress</artifactId>
75 <version>${apache.compress.version}</version>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-test</artifactId>
83 <groupId>org.apache.httpcomponents</groupId>
84 <artifactId>httpcore</artifactId>
85 <version>${apache.httpcore.version}</version>