blob: 461ba545ff82910353af715eee42d7c14664b336 [file] [log] [blame]
ramverma37d6fd92018-06-01 11:51:36 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
adheli.tavaresa3a032d2023-08-10 16:58:48 +01004 Modifications Copyright (C) 2020,2022-2023 Nordix Foundation.
ramverma37d6fd92018-06-01 11:51:36 +01005 ================================================================================
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.tavaresa3a032d2023-08-10 16:58:48 +010021<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">
ramverma37d6fd92018-06-01 11:51:36 +010023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.policy.apex-pdp</groupId>
26 <artifactId>apex-pdp</artifactId>
rameshiyer2795514842024-07-12 14:00:54 +000027 <version>4.0.1-SNAPSHOT</version>
ramverma37d6fd92018-06-01 11:51:36 +010028 </parent>
29
30 <groupId>org.onap.policy.apex-pdp.core</groupId>
31 <artifactId>core</artifactId>
ramverma37d6fd92018-06-01 11:51:36 +010032
33 <name>${project.artifactId}</name>
34 <description>The main core of Apex, deployment independent.</description>
35
liamfallonf0fd9642022-02-11 00:43:14 +000036 <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>
liamfallonf0fd9642022-02-11 00:43:14 +000055 </dependencies>
a.sreekumarf1f9a302020-03-25 23:01:06 +000056</project>