blob: 3263b7b99c53a6c0fca21f3a388c9832950581c6 [file] [log] [blame]
Jim Hahn86664072018-02-09 12:20:56 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Common Modules
4 ================================================================================
Jim Hahnc6129462019-01-23 14:25:12 -05005 Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
Jim Hahn86664072018-02-09 12:20:56 -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
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
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">
ramverma95751fd2018-08-28 14:09:39 +010022 <modelVersion>4.0.0</modelVersion>
Jim Hahn86664072018-02-09 12:20:56 -050023
ramverma95751fd2018-08-28 14:09:39 +010024 <parent>
25 <groupId>org.onap.policy.common</groupId>
26 <artifactId>common-modules</artifactId>
liamfallon2f72ab62018-10-31 15:23:33 +000027 <version>1.4.0-SNAPSHOT</version>
ramverma95751fd2018-08-28 14:09:39 +010028 </parent>
29
30 <artifactId>utils</artifactId>
31 <description>Common Utilities</description>
32 <packaging>jar</packaging>
33
ramverma95751fd2018-08-28 14:09:39 +010034 <dependencies>
35 <dependency>
Jim Hahnc6129462019-01-23 14:25:12 -050036 <groupId>com.google.code.gson</groupId>
37 <artifactId>gson</artifactId>
38 </dependency>
39 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010040 <groupId>org.apache.commons</groupId>
41 <artifactId>commons-lang3</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010042 </dependency>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
Jim Hahna2db43a2018-11-30 09:28:09 -050049 <groupId>org.eclipse.persistence</groupId>
50 <artifactId>javax.persistence</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010051 </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>
ramverma95751fd2018-08-28 14:09:39 +010060 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.powermock</groupId>
64 <artifactId>powermock-module-junit4</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010065 <scope>test</scope>
ramverma95751fd2018-08-28 14:09:39 +010066 </dependency>
67 <dependency>
Jim Hahnb8432fe2019-02-27 10:08:55 -050068 <groupId>org.assertj</groupId>
69 <artifactId>assertj-core</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010073 <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>
liamfallon2f72ab62018-10-31 15:23:33 +0000110 <ignore />
ramverma95751fd2018-08-28 14:09:39 +0100111 </action>
112 </pluginExecution>
113 </pluginExecutions>
114 </lifecycleMappingMetadata>
115 </configuration>
116 </plugin>
117 </plugins>
118 </pluginManagement>
119 </build>
Jim Hahn86664072018-02-09 12:20:56 -0500120</project>