blob: 1da1de70667e5d6c8a570a76f491cf70db989c0d [file] [log] [blame]
Jim Hahn86664072018-02-09 12:20:56 -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 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
liamfallon21289422019-04-04 13:26:58 +000021<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">
ramverma95751fd2018-08-28 14:09:39 +010023 <modelVersion>4.0.0</modelVersion>
Jim Hahn86664072018-02-09 12:20:56 -050024
ramverma95751fd2018-08-28 14:09:39 +010025 <parent>
26 <groupId>org.onap.policy.common</groupId>
27 <artifactId>common-modules</artifactId>
Pamela Dragoshf3e77922020-05-19 13:34:34 -040028 <version>1.7.0-SNAPSHOT</version>
ramverma95751fd2018-08-28 14:09:39 +010029 </parent>
30
31 <artifactId>utils</artifactId>
32 <description>Common Utilities</description>
33 <packaging>jar</packaging>
34
ramverma95751fd2018-08-28 14:09:39 +010035 <dependencies>
36 <dependency>
Jim Hahnfe237212020-01-10 16:59:48 -050037 <groupId>javax.xml.bind</groupId>
38 <artifactId>jaxb-api</artifactId>
39 <version>${version.javax.bind}</version>
40 </dependency>
41 <dependency>
Jim Hahn173c4db2019-09-09 16:51:32 -040042 <groupId>org.yaml</groupId>
43 <artifactId>snakeyaml</artifactId>
44 </dependency>
45 <dependency>
Jim Hahnc6129462019-01-23 14:25:12 -050046 <groupId>com.google.code.gson</groupId>
47 <artifactId>gson</artifactId>
48 </dependency>
49 <dependency>
Jim Hahn1162f4b2019-03-11 11:37:53 -040050 <groupId>org.onap.policy.common</groupId>
51 <artifactId>capabilities</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
Jim Hahnea29ed12019-04-10 20:08:30 -040055 <groupId>org.onap.policy.common</groupId>
56 <artifactId>gson</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010060 <groupId>org.apache.commons</groupId>
61 <artifactId>commons-lang3</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010062 </dependency>
63 <dependency>
Jim Hahnd3e074c2020-06-30 09:14:51 -040064 <groupId>commons-net</groupId>
65 <artifactId>commons-net</artifactId>
66 <version>3.6</version>
67 </dependency>
68 <dependency>
Chou, Josephd574a2f2019-03-07 11:49:23 -050069 <groupId>com.google.guava</groupId>
70 <artifactId>guava</artifactId>
71 </dependency>
72 <dependency>
Jim Hahna56d3922020-04-03 09:44:26 -040073 <groupId>com.google.re2j</groupId>
74 <artifactId>re2j</artifactId>
75 </dependency>
76 <dependency>
ramverma95751fd2018-08-28 14:09:39 +010077 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
Jim Hahn1162f4b2019-03-11 11:37:53 -040082 <groupId>ch.qos.logback</groupId>
83 <artifactId>logback-classic</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
Jim Hahna2db43a2018-11-30 09:28:09 -050087 <groupId>org.eclipse.persistence</groupId>
88 <artifactId>javax.persistence</artifactId>
ramverma95751fd2018-08-28 14:09:39 +010089 </dependency>
90 <dependency>
jhh2ce955e2020-01-27 06:45:07 -060091 <groupId>com.worldturner.medeia</groupId>
92 <artifactId>medeia-validator-gson</artifactId>
RossC6a384a22020-07-01 16:45:01 +010093 <version>1.1.1</version>
jhh2ce955e2020-01-27 06:45:07 -060094 </dependency>
95 <dependency>
liamfallon21289422019-04-04 13:26:58 +000096 <groupId>org.projectlombok</groupId>
97 <artifactId>lombok</artifactId>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
ramverma95751fd2018-08-28 14:09:39 +0100101 <groupId>org.slf4j</groupId>
102 <artifactId>slf4j-api</artifactId>
103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.powermock</groupId>
HOCKLA61394602020-01-09 11:48:49 -0600107 <artifactId>powermock-api-mockito2</artifactId>
ramverma95751fd2018-08-28 14:09:39 +0100108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.powermock</groupId>
112 <artifactId>powermock-module-junit4</artifactId>
ramverma95751fd2018-08-28 14:09:39 +0100113 <scope>test</scope>
ramverma95751fd2018-08-28 14:09:39 +0100114 </dependency>
115 <dependency>
Jim Hahnb8432fe2019-02-27 10:08:55 -0500116 <groupId>org.assertj</groupId>
117 <artifactId>assertj-core</artifactId>
118 <scope>test</scope>
119 </dependency>
ramverma95751fd2018-08-28 14:09:39 +0100120 </dependencies>
121
122 <build>
123 <pluginManagement>
124 <plugins>
RossC6a384a22020-07-01 16:45:01 +0100125 <!--This plugin's configuration is used to store Eclipse m2e settings
ramverma95751fd2018-08-28 14:09:39 +0100126 only. It has no influence on the Maven build itself. -->
127 <plugin>
128 <groupId>org.eclipse.m2e</groupId>
129 <artifactId>lifecycle-mapping</artifactId>
130 <version>1.0.0</version>
131 <configuration>
132 <lifecycleMappingMetadata>
133 <pluginExecutions>
134 <pluginExecution>
135 <pluginExecutionFilter>
136 <groupId>org.jacoco</groupId>
137 <artifactId>
138 jacoco-maven-plugin
139 </artifactId>
140 <versionRange>
141 [0.7.1.201405082137,)
142 </versionRange>
143 <goals>
144 <goal>prepare-agent</goal>
145 </goals>
146 </pluginExecutionFilter>
147 <action>
liamfallon2f72ab62018-10-31 15:23:33 +0000148 <ignore />
ramverma95751fd2018-08-28 14:09:39 +0100149 </action>
150 </pluginExecution>
151 </pluginExecutions>
152 </lifecycleMappingMetadata>
153 </configuration>
154 </plugin>
155 </plugins>
156 </pluginManagement>
157 </build>
Jim Hahn86664072018-02-09 12:20:56 -0500158</project>