liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Nordix Foundation. |
HOCKLA | c5475f1 | 2020-01-10 12:16:00 -0600 | [diff] [blame] | 4 | Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 5 | ================================================================================ |
| 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 | --> |
liamfallon | 35c6f2d | 2019-03-26 09:26:00 +0000 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.models</groupId> |
| 26 | <artifactId>policy-models</artifactId> |
Jim Hahn | ee142f5 | 2020-10-26 16:53:04 -0400 | [diff] [blame] | 27 | <version>2.4.0-SNAPSHOT</version> |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>policy-models-base</artifactId> |
| 31 | <name>${project.artifactId}</name> |
| 32 | <description>[${project.parent.artifactId}] module provides basic model handling for the ONAP Policy Framework</description> |
liamfallon | 35c6f2d | 2019-03-26 09:26:00 +0000 | [diff] [blame] | 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
Jim Hahn | 6345dce | 2020-12-17 12:07:14 -0500 | [diff] [blame] | 36 | <groupId>org.onap.policy.common</groupId> |
| 37 | <artifactId>common-parameters</artifactId> |
| 38 | <version>${policy.common.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
liamfallon | 35c6f2d | 2019-03-26 09:26:00 +0000 | [diff] [blame] | 41 | <groupId>org.onap.policy.models</groupId> |
| 42 | <artifactId>policy-models-errors</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
HOCKLA | 754f9a0 | 2019-12-21 12:11:33 -0600 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.apache.commons</groupId> |
| 47 | <artifactId>commons-lang3</artifactId> |
HOCKLA | 754f9a0 | 2019-12-21 12:11:33 -0600 | [diff] [blame] | 48 | </dependency> |
liamfallon | 35c6f2d | 2019-03-26 09:26:00 +0000 | [diff] [blame] | 49 | </dependencies> |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 50 | </project> |