Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Common Modules |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. |
| 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. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.common</groupId> |
| 27 | <artifactId>common-modules</artifactId> |
| 28 | <version>1.2.0-SNAPSHOT</version> |
| 29 | </parent> |
| 30 | |
| 31 | <artifactId>utils-test</artifactId> |
| 32 | <description>Common Utilities to facilitate testing via JUnit</description> |
| 33 | <packaging>jar</packaging> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>junit</groupId> |
| 38 | <artifactId>junit</artifactId> |
| 39 | <version>4.11</version> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame^] | 40 | <scope>provided</scope> |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 41 | </dependency> |
Jim Hahn | e9fd35a | 2018-02-07 17:13:32 -0500 | [diff] [blame] | 42 | <dependency> |
| 43 | <groupId>ch.qos.logback</groupId> |
| 44 | <artifactId>logback-classic</artifactId> |
| 45 | <version>${logback.version}</version> |
| 46 | </dependency> |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 47 | </dependencies> |
| 48 | |
| 49 | <build> |
| 50 | <pluginManagement> |
| 51 | <plugins> |
| 52 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 53 | only. It has no influence on the Maven build itself. --> |
| 54 | <plugin> |
| 55 | <groupId>org.eclipse.m2e</groupId> |
| 56 | <artifactId>lifecycle-mapping</artifactId> |
| 57 | <version>1.0.0</version> |
| 58 | <configuration> |
| 59 | <lifecycleMappingMetadata> |
| 60 | <pluginExecutions> |
| 61 | <pluginExecution> |
| 62 | <pluginExecutionFilter> |
| 63 | <groupId>org.jacoco</groupId> |
| 64 | <artifactId> |
| 65 | jacoco-maven-plugin |
| 66 | </artifactId> |
| 67 | <versionRange> |
| 68 | [0.7.1.201405082137,) |
| 69 | </versionRange> |
| 70 | <goals> |
| 71 | <goal>prepare-agent</goal> |
| 72 | </goals> |
| 73 | </pluginExecutionFilter> |
| 74 | <action> |
| 75 | <ignore></ignore> |
| 76 | </action> |
| 77 | </pluginExecution> |
| 78 | </pluginExecutions> |
| 79 | </lifecycleMappingMetadata> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </pluginManagement> |
| 84 | </build> |
| 85 | </project> |