ambrishest | b94b48f | 2024-01-08 12:13:16 +0000 | [diff] [blame^] | 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 | <parent>
|
| 29 | <groupId>org.springframework.boot</groupId>
|
| 30 | <artifactId>spring-boot-starter-parent</artifactId>
|
| 31 | <version>3.2.1</version>
|
| 32 | </parent>
|
| 33 |
|
| 34 | <groupId>org.o-ran-sc.nonrtric.plt</groupId>
|
| 35 | <artifactId>hello-world</artifactId>
|
| 36 | <version>0.1.0</version>
|
| 37 |
|
| 38 | <properties>
|
| 39 | <maven.compiler.source>17</maven.compiler.source>
|
| 40 | <maven.compiler.target>17</maven.compiler.target>
|
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 42 | </properties>
|
| 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 |
|
ambrishest | d30570e | 2023-12-07 08:33:45 +0000 | [diff] [blame] | 72 | </project> |