Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Common Modules |
| 4 | ================================================================================ |
Jim Hahn | c612946 | 2019-01-23 14:25:12 -0500 | [diff] [blame] | 5 | Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [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. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 21 | <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"> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 23 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.onap.policy.common</groupId> |
| 26 | <artifactId>common-modules</artifactId> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 27 | <version>1.4.0-SNAPSHOT</version> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>utils</artifactId> |
| 31 | <description>Common Utilities</description> |
| 32 | <packaging>jar</packaging> |
| 33 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
Jim Hahn | c612946 | 2019-01-23 14:25:12 -0500 | [diff] [blame] | 36 | <groupId>com.google.code.gson</groupId> |
| 37 | <artifactId>gson</artifactId> |
| 38 | </dependency> |
| 39 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 40 | <groupId>org.apache.commons</groupId> |
| 41 | <artifactId>commons-lang3</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
| 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
Jim Hahn | a2db43a | 2018-11-30 09:28:09 -0500 | [diff] [blame] | 49 | <groupId>org.eclipse.persistence</groupId> |
| 50 | <artifactId>javax.persistence</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.slf4j</groupId> |
| 54 | <artifactId>slf4j-api</artifactId> |
| 55 | <scope>provided</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.powermock</groupId> |
| 59 | <artifactId>powermock-api-mockito</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.powermock</groupId> |
| 64 | <artifactId>powermock-module-junit4</artifactId> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 65 | <scope>test</scope> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
Jim Hahn | b8432fe | 2019-02-27 10:08:55 -0500 | [diff] [blame] | 68 | <groupId>org.assertj</groupId> |
| 69 | <artifactId>assertj-core</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 73 | <groupId>com.openpojo</groupId> |
| 74 | <artifactId>openpojo</artifactId> |
| 75 | <scope>compile</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.hamcrest</groupId> |
| 79 | <artifactId>hamcrest-core</artifactId> |
| 80 | <version>1.3</version> |
| 81 | </dependency> |
| 82 | </dependencies> |
| 83 | |
| 84 | <build> |
| 85 | <pluginManagement> |
| 86 | <plugins> |
| 87 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 88 | only. It has no influence on the Maven build itself. --> |
| 89 | <plugin> |
| 90 | <groupId>org.eclipse.m2e</groupId> |
| 91 | <artifactId>lifecycle-mapping</artifactId> |
| 92 | <version>1.0.0</version> |
| 93 | <configuration> |
| 94 | <lifecycleMappingMetadata> |
| 95 | <pluginExecutions> |
| 96 | <pluginExecution> |
| 97 | <pluginExecutionFilter> |
| 98 | <groupId>org.jacoco</groupId> |
| 99 | <artifactId> |
| 100 | jacoco-maven-plugin |
| 101 | </artifactId> |
| 102 | <versionRange> |
| 103 | [0.7.1.201405082137,) |
| 104 | </versionRange> |
| 105 | <goals> |
| 106 | <goal>prepare-agent</goal> |
| 107 | </goals> |
| 108 | </pluginExecutionFilter> |
| 109 | <action> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 110 | <ignore /> |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 111 | </action> |
| 112 | </pluginExecution> |
| 113 | </pluginExecutions> |
| 114 | </lifecycleMappingMetadata> |
| 115 | </configuration> |
| 116 | </plugin> |
| 117 | </plugins> |
| 118 | </pluginManagement> |
| 119 | </build> |
Jim Hahn | 8666407 | 2018-02-09 12:20:56 -0500 | [diff] [blame] | 120 | </project> |