liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Jim Hahn | f9add40 | 2021-01-04 12:11:32 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved. |
adheli.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 5 | Modifications Copyright (C) 2023-2024 Nordix Foundation. |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 6 | ================================================================================ |
| 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.tavares | ac4b529 | 2024-09-23 15:13:36 +0100 | [diff] [blame] | 22 | <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"> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.common</groupId> |
| 27 | <artifactId>common-modules</artifactId> |
rameshiyer27 | ef7792f | 2024-11-18 15:10:03 +0000 | [diff] [blame^] | 28 | <version>3.0.2-SNAPSHOT</version> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>common-parameters</artifactId> |
| 32 | <name>${project.artifactId}</name> |
adheli.tavares | ac4b529 | 2024-09-23 15:13:36 +0100 | [diff] [blame] | 33 | <description>[${project.parent.artifactId}] module provides common property and parameter handling the ONAP Policy |
| 34 | Framework |
| 35 | </description> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 36 | |
| 37 | <dependencies> |
Jim Hahn | 5f1b116 | 2020-12-18 15:53:20 -0500 | [diff] [blame] | 38 | <dependency> |
adheli.tavares | ac4b529 | 2024-09-23 15:13:36 +0100 | [diff] [blame] | 39 | <groupId>com.google.code.gson</groupId> |
| 40 | <artifactId>gson</artifactId> |
Jim Hahn | f9add40 | 2021-01-04 12:11:32 -0500 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
adheli.tavares | ac4b529 | 2024-09-23 15:13:36 +0100 | [diff] [blame] | 43 | <groupId>com.google.re2j</groupId> |
| 44 | <artifactId>re2j</artifactId> |
adheli.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 45 | </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.tavares | ac4b529 | 2024-09-23 15:13:36 +0100 | [diff] [blame] | 55 | <groupId>org.projectlombok</groupId> |
| 56 | <artifactId>lombok</artifactId> |
adheli.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
adheli.tavares | ac4b529 | 2024-09-23 15:13:36 +0100 | [diff] [blame] | 59 | <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.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
adheli.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 68 | <groupId>org.assertj</groupId> |
| 69 | <artifactId>assertj-core</artifactId> |
| 70 | <scope>test</scope> |
Jim Hahn | 0af1042 | 2019-03-07 19:51:59 -0500 | [diff] [blame] | 71 | </dependency> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 72 | </dependencies> |
| 73 | </project> |