waqas.ikram | cb0256d | 2023-06-16 13:05:04 +0100 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2023 Nordix Foundation |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | SPDX-License-Identifier: Apache-2.0 |
| 16 | ============LICENSE_END========================================================= |
| 17 | --> |
| 18 | |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.onap.cps</groupId> |
| 24 | <artifactId>cps-ncmp-rest-stub</artifactId> |
| 25 | <version>3.3.3-SNAPSHOT</version> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>cps-ncmp-rest-stub-app</artifactId> |
| 29 | |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.springframework.boot</groupId> |
| 34 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 35 | <configuration> |
| 36 | <mainClass>org.onap.cps.ncmp.rest.stub.Application</mainClass> |
| 37 | </configuration> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <goals> |
| 41 | <goal>repackage</goal> |
| 42 | </goals> |
| 43 | </execution> |
| 44 | </executions> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </build> |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onap.cps</groupId> |
| 52 | <artifactId>cps-ncmp-rest-stub-service</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | </dependencies> |
| 56 | </project> |