Re-enable participant links & checks after first build of i-release docs
[nonrtric/plt/rappmanager.git] / scripts / install / rapp-manager-models / 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 * Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
8 * %%
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
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
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===================================
21 -->
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>
26     <parent>
27         <groupId>org.o-ran-sc.nonrtric.plt</groupId>
28         <artifactId>rappmanager</artifactId>
29         <version>0.0.2-SNAPSHOT</version>
30     </parent>
31
32     <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
33     <artifactId>rapp-manager-models</artifactId>
34
35     <properties>
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>
39     </properties>
40
41     <dependencies>
42         <dependency>
43             <groupId>org.springframework</groupId>
44             <artifactId>spring-context</artifactId>
45             <version>${spring.context.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.springframework</groupId>
49             <artifactId>spring-web</artifactId>
50             <version>${spring.context.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.springframework.statemachine</groupId>
54             <artifactId>spring-statemachine-core</artifactId>
55             <version>${spring.statemachine.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.springframework.statemachine</groupId>
59             <artifactId>spring-statemachine-test</artifactId>
60             <version>${spring.statemachine.version}</version>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.slf4j</groupId>
65             <artifactId>slf4j-api</artifactId>
66             <version>${slf4j.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.projectlombok</groupId>
70             <artifactId>lombok</artifactId>
71             <optional>true</optional>
72         </dependency>
73         <dependency>
74             <groupId>org.apache.commons</groupId>
75             <artifactId>commons-compress</artifactId>
76             <version>${apache.compress.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.policy.clamp</groupId>
80             <artifactId>policy-clamp-models</artifactId>
81             <version>${onap.acm.models.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>com.google.code.gson</groupId>
85             <artifactId>gson</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.springframework.boot</groupId>
89             <artifactId>spring-boot-starter-test</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.apache.httpcomponents</groupId>
94             <artifactId>httpcore</artifactId>
95             <version>${apache.httpcore.version}</version>
96             <scope>test</scope>
97         </dependency>
98
99     </dependencies>
100
101 </project>