blob: d2526eccfb5b8493f1282c033349e1afd905e5cd [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.
adheli.tavares7e934a62024-04-02 15:18:20 +01005 Modifications Copyright (C) 2023-2024 Nordix Foundation.
liamfallon32c6ed62018-07-24 12:38:24 +01006 ================================================================================
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
19 SPDX-License-Identifier: Apache-2.0
20 ============LICENSE_END=========================================================
21-->
adheli.tavaresac4b5292024-09-23 15:13:36 +010022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 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 +010024 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.policy.common</groupId>
27 <artifactId>common-modules</artifactId>
rameshiyer27ef7792f2024-11-18 15:10:03 +000028 <version>3.0.2-SNAPSHOT</version>
liamfallon32c6ed62018-07-24 12:38:24 +010029 </parent>
30
31 <artifactId>common-parameters</artifactId>
32 <name>${project.artifactId}</name>
adheli.tavaresac4b5292024-09-23 15:13:36 +010033 <description>[${project.parent.artifactId}] module provides common property and parameter handling the ONAP Policy
34 Framework
35 </description>
liamfallon32c6ed62018-07-24 12:38:24 +010036
37 <dependencies>
Jim Hahn5f1b1162020-12-18 15:53:20 -050038 <dependency>
adheli.tavaresac4b5292024-09-23 15:13:36 +010039 <groupId>com.google.code.gson</groupId>
40 <artifactId>gson</artifactId>
Jim Hahnf9add402021-01-04 12:11:32 -050041 </dependency>
42 <dependency>
adheli.tavaresac4b5292024-09-23 15:13:36 +010043 <groupId>com.google.re2j</groupId>
44 <artifactId>re2j</artifactId>
adheli.tavares7e934a62024-04-02 15:18:20 +010045 </dependency>
46 <dependency>
47 <groupId>jakarta.validation</groupId>
48 <artifactId>jakarta.validation-api</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.commons</groupId>
52 <artifactId>commons-lang3</artifactId>
53 </dependency>
54 <dependency>
adheli.tavaresac4b5292024-09-23 15:13:36 +010055 <groupId>org.projectlombok</groupId>
56 <artifactId>lombok</artifactId>
adheli.tavares7e934a62024-04-02 15:18:20 +010057 </dependency>
58 <dependency>
adheli.tavaresac4b5292024-09-23 15:13:36 +010059 <groupId>org.slf4j</groupId>
60 <artifactId>slf4j-api</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.mockito</groupId>
64 <artifactId>mockito-core</artifactId>
65 <scope>test</scope>
adheli.tavares7e934a62024-04-02 15:18:20 +010066 </dependency>
67 <dependency>
adheli.tavares7e934a62024-04-02 15:18:20 +010068 <groupId>org.assertj</groupId>
69 <artifactId>assertj-core</artifactId>
70 <scope>test</scope>
Jim Hahn0af10422019-03-07 19:51:59 -050071 </dependency>
liamfallon32c6ed62018-07-24 12:38:24 +010072 </dependencies>
73</project>