ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame] | 4 | Modifications Copyright (C) 2020,2022-2023 Nordix Foundation. |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [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 | --> |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.apex-pdp</groupId> |
| 26 | <artifactId>apex-pdp</artifactId> |
rameshiyer27 | 9551484 | 2024-07-12 14:00:54 +0000 | [diff] [blame^] | 27 | <version>4.0.1-SNAPSHOT</version> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 31 | <artifactId>core</artifactId> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 32 | |
| 33 | <name>${project.artifactId}</name> |
| 34 | <description>The main core of Apex, deployment independent.</description> |
| 35 | |
liamfallon | f0fd964 | 2022-02-11 00:43:14 +0000 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.policy.common</groupId> |
| 39 | <artifactId>common-parameters</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
| 43 | <artifactId>model</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.policy.apex-pdp.context</groupId> |
| 48 | <artifactId>context-management</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.google.guava</groupId> |
| 53 | <artifactId>guava</artifactId> |
| 54 | </dependency> |
liamfallon | f0fd964 | 2022-02-11 00:43:14 +0000 | [diff] [blame] | 55 | </dependencies> |
a.sreekumar | f1f9a30 | 2020-03-25 23:01:06 +0000 | [diff] [blame] | 56 | </project> |