waqas.ikram | cb0256d | 2023-06-16 13:05:04 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
emaclee | ea7d1b4 | 2024-03-24 19:05:34 +0000 | [diff] [blame] | 3 | Copyright (C) 2023-2024 Nordix Foundation |
waqas.ikram | cb0256d | 2023-06-16 13:05:04 +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>cps-ncmp-rest-stub</artifactId> |
mpriyank | 08bcac3 | 2024-12-02 14:26:03 +0000 | [diff] [blame^] | 24 | <version>3.6.0-SNAPSHOT</version> |
waqas.ikram | cb0256d | 2023-06-16 13:05:04 +0100 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>cps-ncmp-rest-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> |
| 41 | <groupId>org.springframework.boot</groupId> |
| 42 | <artifactId>spring-boot-starter-jetty</artifactId> |
| 43 | <scope>compile</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onap.cps</groupId> |
| 47 | <artifactId>cps-ncmp-rest</artifactId> |
| 48 | </dependency> |
waqas.ikram | cb62395 | 2023-06-21 14:16:22 +0100 | [diff] [blame] | 49 | <!-- T E S T - D E P E N D E N C I E S --> |
| 50 | <dependency> |
| 51 | <groupId>org.spockframework</groupId> |
| 52 | <artifactId>spock-core</artifactId> |
| 53 | <scope>test</scope> |
| 54 | </dependency> |
waqas.ikram | ad6021f | 2023-10-04 10:05:09 +0100 | [diff] [blame] | 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.springframework.boot</groupId> |
| 58 | <artifactId>spring-boot-starter-test</artifactId> |
| 59 | <scope>test</scope> |
waqas.ikram | ad6021f | 2023-10-04 10:05:09 +0100 | [diff] [blame] | 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.spockframework</groupId> |
| 63 | <artifactId>spock-spring</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
waqas.ikram | cb0256d | 2023-06-16 13:05:04 +0100 | [diff] [blame] | 66 | </dependencies> |
waqas.ikram | ad6021f | 2023-10-04 10:05:09 +0100 | [diff] [blame] | 67 | |
waqas.ikram | cb0256d | 2023-06-16 13:05:04 +0100 | [diff] [blame] | 68 | </project> |