mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Pamela Dragosh | c22d70d | 2020-01-14 13:51:12 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 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 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.common</groupId> |
| 27 | <artifactId>common-modules</artifactId> |
Pamela Dragosh | f3e7792 | 2020-05-19 13:34:34 -0400 | [diff] [blame^] | 28 | <version>1.7.0-SNAPSHOT</version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>capabilities</artifactId> |
| 32 | <description>Properties</description> |
| 33 | <packaging>jar</packaging> |
| 34 | |
Pamela Dragosh | c22d70d | 2020-01-14 13:51:12 -0500 | [diff] [blame] | 35 | <properties> |
| 36 | <!-- There is no code in this sub-module, only holds interfaces. So skip sonar. --> |
| 37 | <sonar.skip>true</sonar.skip> |
| 38 | </properties> |
| 39 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 40 | <build> |
| 41 | <pluginManagement> |
| 42 | <plugins> |
| 43 | <!--This plugin's configuration is used to store Eclipse |
| 44 | m2e settings only. It has no influence on the Maven build itself. --> |
| 45 | <plugin> |
| 46 | <groupId>org.eclipse.m2e</groupId> |
| 47 | <artifactId>lifecycle-mapping</artifactId> |
| 48 | <version>1.0.0</version> |
| 49 | <configuration> |
| 50 | <lifecycleMappingMetadata> |
| 51 | <pluginExecutions> |
| 52 | <pluginExecution> |
| 53 | <pluginExecutionFilter> |
| 54 | <groupId>org.jacoco</groupId> |
| 55 | <artifactId> |
| 56 | jacoco-maven-plugin |
| 57 | </artifactId> |
| 58 | <versionRange> |
| 59 | [0.7.1.201405082137,) |
| 60 | </versionRange> |
| 61 | <goals> |
| 62 | <goal>prepare-agent</goal> |
| 63 | </goals> |
| 64 | </pluginExecutionFilter> |
| 65 | <action> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 66 | <ignore /> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 67 | </action> |
| 68 | </pluginExecution> |
| 69 | </pluginExecutions> |
| 70 | </lifecycleMappingMetadata> |
| 71 | </configuration> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </pluginManagement> |
| 75 | </build> |
| 76 | </project> |