blob: f1fd84442e950fa1f6f99a1e107d8726ddff1047 [file] [log] [blame]
Jim Hahn82bc8f52018-02-05 12:05:26 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Common Modules
4 ================================================================================
HOCKLA61394602020-01-09 11:48:49 -06005 Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
Jim Hahn82bc8f52018-02-05 12:05:26 -05006 ================================================================================
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 Hahn29dd6522018-09-13 12:40:37 -040010
Jim Hahn82bc8f52018-02-05 12:05:26 -050011 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahn29dd6522018-09-13 12:40:37 -040012
Jim Hahn82bc8f52018-02-05 12:05:26 -050013 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
liamfallon2f72ab62018-10-31 15:23:33 +000021<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 Hahn29dd6522018-09-13 12:40:37 -040022 <modelVersion>4.0.0</modelVersion>
Jim Hahn82bc8f52018-02-05 12:05:26 -050023
Jim Hahn29dd6522018-09-13 12:40:37 -040024 <parent>
25 <groupId>org.onap.policy.common</groupId>
26 <artifactId>common-modules</artifactId>
Jim Hahnfa868f62020-09-08 11:08:56 -040027 <version>1.7.2-SNAPSHOT</version>
Jim Hahn29dd6522018-09-13 12:40:37 -040028 </parent>
29
30 <artifactId>utils-test</artifactId>
31 <description>Common Utilities to facilitate testing via JUnit</description>
32 <packaging>jar</packaging>
33
34 <properties>
HOCKLA61394602020-01-09 11:48:49 -060035 <powermock.version>2.0.4</powermock.version>
Jim Hahn29dd6522018-09-13 12:40:37 -040036 </properties>
37
38 <dependencies>
39 <dependency>
Jim Hahna56d3922020-04-03 09:44:26 -040040 <groupId>com.google.re2j</groupId>
41 <artifactId>re2j</artifactId>
42 </dependency>
43 <dependency>
Jim Hahnb46e3152020-01-20 17:39:32 -050044 <groupId>org.apache.commons</groupId>
45 <artifactId>commons-jexl3</artifactId>
RossC6a384a22020-07-01 16:45:01 +010046 <version>3.1</version>
Jim Hahnb46e3152020-01-20 17:39:32 -050047 </dependency>
48 <dependency>
Jim Hahncf0cd762019-08-19 17:32:09 -040049 <groupId>org.projectlombok</groupId>
50 <artifactId>lombok</artifactId>
51 <scope>provided</scope>
52 </dependency>
53 <dependency>
Jim Hahn29dd6522018-09-13 12:40:37 -040054 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <scope>provided</scope>
57 </dependency>
58 <dependency>
Jim Hahna392ecb2019-01-08 17:15:07 -050059 <groupId>org.assertj</groupId>
60 <artifactId>assertj-core</artifactId>
Jim Hahna392ecb2019-01-08 17:15:07 -050061 <scope>test</scope>
62 </dependency>
63 <dependency>
Jim Hahn29dd6522018-09-13 12:40:37 -040064 <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 Hahnc064f5e2019-02-13 10:53:12 -050073 <groupId>org.onap.policy.common</groupId>
74 <artifactId>gson</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <dependency>
Jim Hahn29dd6522018-09-13 12:40:37 -040078 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -060079 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahn29dd6522018-09-13 12:40:37 -040080 <scope>test</scope>
81 </dependency>
Jim Hahncf0cd762019-08-19 17:32:09 -040082 <dependency>
83 <groupId>org.awaitility</groupId>
84 <artifactId>awaitility</artifactId>
Jim Hahncf0cd762019-08-19 17:32:09 -040085 <scope>test</scope>
86 </dependency>
ramvermae6c636b2019-06-25 13:46:47 +000087 <dependency>
88 <groupId>com.openpojo</groupId>
89 <artifactId>openpojo</artifactId>
90 <scope>compile</scope>
91 </dependency>
Jim Hahn29dd6522018-09-13 12:40:37 -040092 </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>
liamfallon2f72ab62018-10-31 15:23:33 +0000120 <ignore />
Jim Hahn29dd6522018-09-13 12:40:37 -0400121 </action>
122 </pluginExecution>
123 </pluginExecutions>
124 </lifecycleMappingMetadata>
125 </configuration>
126 </plugin>
127 </plugins>
128 </pluginManagement>
129 </build>
Jim Hahn82bc8f52018-02-05 12:05:26 -0500130</project>