Change in URI Versioning
[nonrtric.git] / test / servicestub / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 \r
3 <!--\r
4 * ========================LICENSE_START=================================\r
5 * O-RAN-SC\r
6 * %%\r
7 * Copyright (C) 2023 OpenInfra Foundation Europe.\r
8 * %%\r
9 * Licensed under the Apache License, Version 2.0 (the "License");\r
10 * you may not use this file except in compliance with the License.\r
11 * You may obtain a copy of the License at\r
12 *\r
13 * http://www.apache.org/licenses/LICENSE-2.0\r
14 *\r
15 * Unless required by applicable law or agreed to in writing, software\r
16 * distributed under the License is distributed on an "AS IS" BASIS,\r
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
18 * See the License for the specific language governing permissions and\r
19 * limitations under the License.\r
20 * ========================LICENSE_END===================================\r
21 -->\r
22 \r
23 <project xmlns="http://maven.apache.org/POM/4.0.0"\r
24          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
26     <modelVersion>4.0.0</modelVersion>\r
27 \r
28     <parent>\r
29         <groupId>org.springframework.boot</groupId>\r
30         <artifactId>spring-boot-starter-parent</artifactId>\r
31         <version>3.2.1</version>\r
32     </parent>\r
33 \r
34     <groupId>org.o-ran-sc.nonrtric.plt</groupId>\r
35     <artifactId>hello-world</artifactId>\r
36     <version>0.1.0</version>\r
37 \r
38     <properties>\r
39         <maven.compiler.source>17</maven.compiler.source>\r
40         <maven.compiler.target>17</maven.compiler.target>\r
41         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
42     </properties>\r
43 \r
44     <dependencies>\r
45         <dependency>\r
46             <groupId>org.springframework.boot</groupId>\r
47             <artifactId>spring-boot-starter-web</artifactId>\r
48         </dependency>\r
49 \r
50         <dependency>\r
51             <groupId>org.springframework.boot</groupId>\r
52             <artifactId>spring-boot-starter-test</artifactId>\r
53             <scope>test</scope>\r
54         </dependency>\r
55 \r
56         <dependency>\r
57             <groupId>org.mockito</groupId>\r
58             <artifactId>mockito-core</artifactId>\r
59             <scope>test</scope>\r
60         </dependency>\r
61     </dependencies>\r
62 \r
63     <build>\r
64         <plugins>\r
65             <plugin>\r
66                 <groupId>org.springframework.boot</groupId>\r
67                 <artifactId>spring-boot-maven-plugin</artifactId>\r
68             </plugin>\r
69         </plugins>\r
70     </build>\r
71 \r
72 </project>