Update artifact id and name
[nonrtric/plt/rappmanager.git] / 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 * %%
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
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
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===================================
20 -->
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>
25     <parent>
26         <groupId>org.o-ran-sc.nonrtric.plt</groupId>
27         <artifactId>rappmanager</artifactId>
28         <version>0.0.1-SNAPSHOT</version>
29     </parent>
30
31     <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
32     <artifactId>rapp-manager-models</artifactId>
33
34     <properties>
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>
38     </properties>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.springframework</groupId>
43             <artifactId>spring-context</artifactId>
44             <version>${spring.context.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.springframework</groupId>
48             <artifactId>spring-web</artifactId>
49             <version>${spring.context.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>org.springframework.statemachine</groupId>
53             <artifactId>spring-statemachine-core</artifactId>
54             <version>${spring.statemachine.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>org.springframework.statemachine</groupId>
58             <artifactId>spring-statemachine-test</artifactId>
59             <version>${spring.statemachine.version}</version>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.slf4j</groupId>
64             <artifactId>slf4j-api</artifactId>
65             <version>${slf4j.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.projectlombok</groupId>
69             <artifactId>lombok</artifactId>
70             <optional>true</optional>
71         </dependency>
72         <dependency>
73             <groupId>org.apache.commons</groupId>
74             <artifactId>commons-compress</artifactId>
75             <version>${apache.compress.version}</version>
76         </dependency>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-test</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.apache.httpcomponents</groupId>
84             <artifactId>httpcore</artifactId>
85             <version>${apache.httpcore.version}</version>
86             <scope>test</scope>
87         </dependency>
88
89     </dependencies>
90
91 </project>