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 | 349b4ae | 2023-07-21 09:41:01 +0100 | [diff] [blame] | 5 | * Modifications Copyright (C) 2023 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 | --> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 22 | <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"> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.common</groupId> |
| 26 | <artifactId>common-modules</artifactId> |
liamfallon | 18268f0 | 2023-11-14 16:12:19 +0100 | [diff] [blame] | 27 | <version>2.1.0-SNAPSHOT</version> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>common-parameters</artifactId> |
| 31 | <name>${project.artifactId}</name> |
| 32 | <description>[${project.parent.artifactId}] module provides common property and parameter handling the ONAP Policy Framework</description> |
| 33 | |
| 34 | <dependencies> |
Jim Hahn | 5f1b116 | 2020-12-18 15:53:20 -0500 | [diff] [blame] | 35 | <dependency> |
Jim Hahn | f9add40 | 2021-01-04 12:11:32 -0500 | [diff] [blame] | 36 | <groupId>org.slf4j</groupId> |
| 37 | <artifactId>slf4j-api</artifactId> |
| 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>ch.qos.logback</groupId> |
| 42 | <artifactId>logback-classic</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
Jim Hahn | 0af1042 | 2019-03-07 19:51:59 -0500 | [diff] [blame] | 46 | <groupId>org.projectlombok</groupId> |
| 47 | <artifactId>lombok</artifactId> |
| 48 | </dependency> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 49 | </dependencies> |
| 50 | </project> |