liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Nordix Foundation. |
Jim Hahn | e6bea18 | 2021-01-05 11:11:26 -0500 | [diff] [blame] | 4 | Copyright (C) 2020-2021 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> |
liamfallon | 068aea1 | 2021-09-15 10:03:32 +0100 | [diff] [blame] | 27 | <version>2.5.1-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> |
Jim Hahn | e6bea18 | 2021-01-05 11:11:26 -0500 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>org.powermock</groupId> |
| 51 | <artifactId>powermock-api-mockito2</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
liamfallon | 35c6f2d | 2019-03-26 09:26:00 +0000 | [diff] [blame] | 54 | </dependencies> |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 55 | </project> |