Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Common Modules |
| 4 | ================================================================================ |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -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 |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 10 | |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 11 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 12 | |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 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"> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 23 | |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.onap.policy.common</groupId> |
| 26 | <artifactId>common-modules</artifactId> |
Jim Hahn | fa868f6 | 2020-09-08 11:08:56 -0400 | [diff] [blame^] | 27 | <version>1.7.2-SNAPSHOT</version> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>utils-test</artifactId> |
| 31 | <description>Common Utilities to facilitate testing via JUnit</description> |
| 32 | <packaging>jar</packaging> |
| 33 | |
| 34 | <properties> |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 35 | <powermock.version>2.0.4</powermock.version> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 36 | </properties> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
Jim Hahn | a56d392 | 2020-04-03 09:44:26 -0400 | [diff] [blame] | 40 | <groupId>com.google.re2j</groupId> |
| 41 | <artifactId>re2j</artifactId> |
| 42 | </dependency> |
| 43 | <dependency> |
Jim Hahn | b46e315 | 2020-01-20 17:39:32 -0500 | [diff] [blame] | 44 | <groupId>org.apache.commons</groupId> |
| 45 | <artifactId>commons-jexl3</artifactId> |
RossC | 6a384a2 | 2020-07-01 16:45:01 +0100 | [diff] [blame] | 46 | <version>3.1</version> |
Jim Hahn | b46e315 | 2020-01-20 17:39:32 -0500 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
Jim Hahn | cf0cd76 | 2019-08-19 17:32:09 -0400 | [diff] [blame] | 49 | <groupId>org.projectlombok</groupId> |
| 50 | <artifactId>lombok</artifactId> |
| 51 | <scope>provided</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 54 | <groupId>junit</groupId> |
| 55 | <artifactId>junit</artifactId> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
Jim Hahn | a392ecb | 2019-01-08 17:15:07 -0500 | [diff] [blame] | 59 | <groupId>org.assertj</groupId> |
| 60 | <artifactId>assertj-core</artifactId> |
Jim Hahn | a392ecb | 2019-01-08 17:15:07 -0500 | [diff] [blame] | 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 64 | <groupId>ch.qos.logback</groupId> |
| 65 | <artifactId>logback-classic</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.onap.policy.common</groupId> |
| 69 | <artifactId>utils</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
Jim Hahn | c064f5e | 2019-02-13 10:53:12 -0500 | [diff] [blame] | 73 | <groupId>org.onap.policy.common</groupId> |
| 74 | <artifactId>gson</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 78 | <groupId>org.powermock</groupId> |
HOCKLA | 6139460 | 2020-01-09 11:48:49 -0600 | [diff] [blame] | 79 | <artifactId>powermock-api-mockito2</artifactId> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 80 | <scope>test</scope> |
| 81 | </dependency> |
Jim Hahn | cf0cd76 | 2019-08-19 17:32:09 -0400 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.awaitility</groupId> |
| 84 | <artifactId>awaitility</artifactId> |
Jim Hahn | cf0cd76 | 2019-08-19 17:32:09 -0400 | [diff] [blame] | 85 | <scope>test</scope> |
| 86 | </dependency> |
ramverma | e6c636b | 2019-06-25 13:46:47 +0000 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>com.openpojo</groupId> |
| 89 | <artifactId>openpojo</artifactId> |
| 90 | <scope>compile</scope> |
| 91 | </dependency> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 92 | </dependencies> |
| 93 | |
| 94 | <build> |
| 95 | <pluginManagement> |
| 96 | <plugins> |
| 97 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven |
| 98 | build itself. --> |
| 99 | <plugin> |
| 100 | <groupId>org.eclipse.m2e</groupId> |
| 101 | <artifactId>lifecycle-mapping</artifactId> |
| 102 | <version>1.0.0</version> |
| 103 | <configuration> |
| 104 | <lifecycleMappingMetadata> |
| 105 | <pluginExecutions> |
| 106 | <pluginExecution> |
| 107 | <pluginExecutionFilter> |
| 108 | <groupId>org.jacoco</groupId> |
| 109 | <artifactId> |
| 110 | jacoco-maven-plugin |
| 111 | </artifactId> |
| 112 | <versionRange> |
| 113 | [0.7.1.201405082137,) |
| 114 | </versionRange> |
| 115 | <goals> |
| 116 | <goal>prepare-agent</goal> |
| 117 | </goals> |
| 118 | </pluginExecutionFilter> |
| 119 | <action> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 120 | <ignore /> |
Jim Hahn | 29dd652 | 2018-09-13 12:40:37 -0400 | [diff] [blame] | 121 | </action> |
| 122 | </pluginExecution> |
| 123 | </pluginExecutions> |
| 124 | </lifecycleMappingMetadata> |
| 125 | </configuration> |
| 126 | </plugin> |
| 127 | </plugins> |
| 128 | </pluginManagement> |
| 129 | </build> |
Jim Hahn | 82bc8f5 | 2018-02-05 12:05:26 -0500 | [diff] [blame] | 130 | </project> |