blob: 8016d20a585fb0e6848743181d716538d50f7491 [file] [log] [blame]
mmisb40acf22018-07-20 15:28:25 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
Pamela Dragoshc22d70d2020-01-14 13:51:12 -05004 Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
mmisb40acf22018-07-20 15:28:25 +01005 ================================================================================
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
liamfallon2f72ab62018-10-31 15:23:33 +000022<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">
mmisb40acf22018-07-20 15:28:25 +010023 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onap.policy.common</groupId>
27 <artifactId>common-modules</artifactId>
Pamela Dragoshf3e77922020-05-19 13:34:34 -040028 <version>1.7.0-SNAPSHOT</version>
mmisb40acf22018-07-20 15:28:25 +010029 </parent>
30
31 <artifactId>capabilities</artifactId>
32 <description>Properties</description>
33 <packaging>jar</packaging>
34
Pamela Dragoshc22d70d2020-01-14 13:51:12 -050035 <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
mmisb40acf22018-07-20 15:28:25 +010040 <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>
liamfallon2f72ab62018-10-31 15:23:33 +000066 <ignore />
mmisb40acf22018-07-20 15:28:25 +010067 </action>
68 </pluginExecution>
69 </pluginExecutions>
70 </lifecycleMappingMetadata>
71 </configuration>
72 </plugin>
73 </plugins>
74 </pluginManagement>
75 </build>
76</project>