sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
danielhanrahan | 8ddb813 | 2024-02-23 10:16:43 +0000 | [diff] [blame] | 3 | Copyright (C) 2023-2024 Nordix Foundation |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | Unless required by applicable law or agreed to in writing, software |
| 10 | distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | See the License for the specific language governing permissions and |
| 13 | limitations under the License. |
| 14 | SPDX-License-Identifier: Apache-2.0 |
| 15 | ============LICENSE_END========================================================= |
| 16 | --> |
| 17 | |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <groupId>org.onap.cps</groupId> |
| 23 | <artifactId>dmi-plugin-demo-and-csit-stub</artifactId> |
mpriyank | 7c2cc25 | 2024-05-15 10:39:02 +0100 | [diff] [blame] | 24 | <version>3.5.0-SNAPSHOT</version> |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>dmi-plugin-demo-and-csit-stub-service</artifactId> |
| 27 | |
| 28 | <dependencies> |
| 29 | <dependency> |
| 30 | <groupId>org.springframework.boot</groupId> |
| 31 | <artifactId>spring-boot-starter-web</artifactId> |
| 32 | <exclusions> |
| 33 | <exclusion> |
| 34 | <groupId>org.springframework.boot</groupId> |
| 35 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 36 | </exclusion> |
| 37 | </exclusions> |
| 38 | <scope>compile</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
danielhanrahan | 8ddb813 | 2024-02-23 10:16:43 +0000 | [diff] [blame] | 41 | <groupId>org.springframework.boot</groupId> |
| 42 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 45 | <groupId>com.googlecode.json-simple</groupId> |
| 46 | <artifactId>json-simple</artifactId> |
| 47 | <version>1.1.1</version> |
emaclee | ea7d1b4 | 2024-03-24 19:05:34 +0000 | [diff] [blame] | 48 | <exclusions> |
| 49 | <exclusion> |
| 50 | <groupId>junit</groupId> |
| 51 | <artifactId>junit</artifactId> |
| 52 | </exclusion> |
| 53 | </exclusions> |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onap.cps</groupId> |
| 58 | <artifactId>cps-ncmp-rest</artifactId> |
| 59 | </dependency> |
| 60 | </dependencies> |
danielhanrahan | 8ddb813 | 2024-02-23 10:16:43 +0000 | [diff] [blame] | 61 | </project> |