tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 4 | Copyright (C) 2021 Nordix Foundation |
| 5 | Modifications Copyright (C) 2021 Pantheon.tech |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 18 | |
| 19 | SPDX-License-Identifier: Apache-2.0 |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 20 | ============LICENSE_END========================================================= |
| 21 | --> |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
| 27 | <groupId>org.onap.cps</groupId> |
| 28 | <artifactId>cps-parent</artifactId> |
| 29 | <version>1.1.0-SNAPSHOT</version> |
| 30 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 31 | </parent> |
| 32 | |
| 33 | <artifactId>cps-ncmp-service</artifactId> |
| 34 | |
| 35 | <properties> |
Claudio D. Gasparini | ac6df76 | 2021-04-19 18:18:19 +0200 | [diff] [blame] | 36 | <minimum-coverage>0.7</minimum-coverage> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 37 | </properties> |
| 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 41 | <groupId>${project.groupId}</groupId> |
| 42 | <artifactId>cps-service</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.spockframework</groupId> |
| 46 | <artifactId>spock-core</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | </dependencies> |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 50 | </project> |