eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
rameshiyer27 | 5e484ea | 2024-01-31 15:02:48 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2023-2024 Nordix Foundation. |
eikrwaq | a94302f | 2018-05-23 14:08:29 +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"> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 25 | <groupId>org.onap.policy.apex-pdp</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 26 | <artifactId>apex-pdp</artifactId> |
rameshiyer27 | 9551484 | 2024-07-12 14:00:54 +0000 | [diff] [blame] | 27 | <version>4.0.1-SNAPSHOT</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 28 | </parent> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 29 | |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 30 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 31 | <artifactId>model</artifactId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 32 | |
| 33 | <name>${project.artifactId}</name> |
rameshiyer27 | 5e484ea | 2024-01-31 15:02:48 +0000 | [diff] [blame] | 34 | <description>The model for Apex, it contains definitions of all Apex concepts and also has handling for Apex |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame] | 35 | models. |
| 36 | </description> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 37 | |
liamfallon | 3cb682f | 2019-04-16 11:20:08 +0000 | [diff] [blame] | 38 | <dependencies> |
| 39 | <dependency> |
liamfallon | 8534756 | 2022-02-10 12:06:25 +0000 | [diff] [blame] | 40 | <groupId>org.onap.policy.common</groupId> |
| 41 | <artifactId>utils</artifactId> |
| 42 | <exclusions> |
| 43 | <exclusion> |
| 44 | <groupId>javax.xml.bind</groupId> |
| 45 | <artifactId>jaxb-api</artifactId> |
| 46 | </exclusion> |
| 47 | </exclusions> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>io.prometheus</groupId> |
| 51 | <artifactId>simpleclient</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.antlr</groupId> |
| 55 | <artifactId>antlr4-runtime</artifactId> |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame] | 56 | <version>${version.antlr-runtime}</version> |
liamfallon | 8534756 | 2022-02-10 12:06:25 +0000 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
liamfallon | 3cb682f | 2019-04-16 11:20:08 +0000 | [diff] [blame] | 59 | <groupId>com.h2database</groupId> |
| 60 | <artifactId>h2</artifactId> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>com.google.guava</groupId> |
| 65 | <artifactId>guava</artifactId> |
| 66 | </dependency> |
liamfallon | 3cb682f | 2019-04-16 11:20:08 +0000 | [diff] [blame] | 67 | </dependencies> |
a.sreekumar | f1f9a30 | 2020-03-25 23:01:06 +0000 | [diff] [blame] | 68 | </project> |