be7a7911fcc523496c44bd62e4671e5e1d0050c5
[nonrtric.git] / test / servicestub / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4 * ========================LICENSE_START=================================
5 * O-RAN-SC
6 * %%
7 * Copyright (C) 2023 OpenInfra Foundation Europe.
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
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27
28     <groupId>org.o-ran-sc.nonrtric.plt</groupId>
29     <artifactId>hello-world</artifactId>
30     <version>0.1.0</version>
31
32     <properties>
33         <maven.compiler.source>17</maven.compiler.source>
34         <maven.compiler.target>17</maven.compiler.target>
35         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36     </properties>
37
38     <parent>
39         <groupId>org.springframework.boot</groupId>
40         <artifactId>spring-boot-starter-parent</artifactId>
41         <version>3.1.0</version>
42     </parent>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.springframework.boot</groupId>
47             <artifactId>spring-boot-starter-web</artifactId>
48         </dependency>
49
50         <dependency>
51             <groupId>org.springframework.boot</groupId>
52             <artifactId>spring-boot-starter-test</artifactId>
53             <scope>test</scope>
54         </dependency>
55
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61     </dependencies>
62
63     <build>
64         <plugins>
65             <plugin>
66                 <groupId>org.springframework.boot</groupId>
67                 <artifactId>spring-boot-maven-plugin</artifactId>
68             </plugin>
69         </plugins>
70     </build>
71
72 </project>