blob: 1d4abdc7fc1db4f720e5e5fde9b2e653f71a370f [file] [log] [blame]
liamfallon32c6ed62018-07-24 12:38:24 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
Jim Hahnf9add402021-01-04 12:11:32 -05004 Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
liamfallon32c6ed62018-07-24 12:38:24 +01005 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 SPDX-License-Identifier: Apache-2.0
19 ============LICENSE_END=========================================================
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">
liamfallon32c6ed62018-07-24 12:38:24 +010022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.common</groupId>
25 <artifactId>common-modules</artifactId>
liamfallon7bc41c52021-09-13 16:02:13 +010026 <version>1.9.1-SNAPSHOT</version>
liamfallon32c6ed62018-07-24 12:38:24 +010027 </parent>
28
29 <artifactId>common-parameters</artifactId>
30 <name>${project.artifactId}</name>
31 <description>[${project.parent.artifactId}] module provides common property and parameter handling the ONAP Policy Framework</description>
32
33 <dependencies>
Jim Hahn5f1b1162020-12-18 15:53:20 -050034 <dependency>
35 <groupId>com.google.re2j</groupId>
36 <artifactId>re2j</artifactId>
37 </dependency>
liamfalloncf282dd2018-09-07 13:36:41 +010038 <dependency>
39 <groupId>org.apache.commons</groupId>
40 <artifactId>commons-lang3</artifactId>
41 </dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010042 <dependency>
Jim Hahnf9add402021-01-04 12:11:32 -050043 <groupId>org.slf4j</groupId>
44 <artifactId>slf4j-api</artifactId>
45 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>ch.qos.logback</groupId>
49 <artifactId>logback-classic</artifactId>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
Jim Hahn0af10422019-03-07 19:51:59 -050053 <groupId>org.projectlombok</groupId>
54 <artifactId>lombok</artifactId>
55 </dependency>
56 <dependency>
Jim Hahnea262e62019-06-12 14:32:25 -040057 <groupId>org.assertj</groupId>
58 <artifactId>assertj-core</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010062 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <scope>test</scope>
65 </dependency>
liamfallon73ba8032018-07-30 10:22:27 +010066 <dependency>
67 <groupId>com.google.code.gson</groupId>
68 <artifactId>gson</artifactId>
liamfallon73ba8032018-07-30 10:22:27 +010069 </dependency>
70 <dependency>
71 <groupId>org.yaml</groupId>
72 <artifactId>snakeyaml</artifactId>
liamfallon73ba8032018-07-30 10:22:27 +010073 <scope>test</scope>
74 </dependency>
FrancescoFioraEste9d95632021-06-21 10:39:22 +010075 <dependency>
76 <groupId>jakarta.validation</groupId>
77 <artifactId>jakarta.validation-api</artifactId>
78 </dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010079 </dependencies>
80</project>