blob: bdbb7f7d66bc8d5a96f9cdd864efbb5e558b48d4 [file] [log] [blame]
eikrwaqa94302f2018-05-23 14:08:29 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
rameshiyer275e484ea2024-01-31 15:02:48 +00004 Modifications Copyright (C) 2023-2024 Nordix Foundation.
eikrwaqa94302f2018-05-23 14:08:29 +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">
eikrwaqa94302f2018-05-23 14:08:29 +010023 <modelVersion>4.0.0</modelVersion>
24 <parent>
waqas.ikramf524b882018-05-24 15:31:21 +010025 <groupId>org.onap.policy.apex-pdp</groupId>
eikrwaqa94302f2018-05-23 14:08:29 +010026 <artifactId>apex-pdp</artifactId>
rameshiyer2795514842024-07-12 14:00:54 +000027 <version>4.0.1-SNAPSHOT</version>
eikrwaqa94302f2018-05-23 14:08:29 +010028 </parent>
ramverma6029d252018-05-25 11:55:45 +010029
waqas.ikramf524b882018-05-24 15:31:21 +010030 <groupId>org.onap.policy.apex-pdp.model</groupId>
eikrwaqa94302f2018-05-23 14:08:29 +010031 <artifactId>model</artifactId>
eikrwaqa94302f2018-05-23 14:08:29 +010032
33 <name>${project.artifactId}</name>
rameshiyer275e484ea2024-01-31 15:02:48 +000034 <description>The model for Apex, it contains definitions of all Apex concepts and also has handling for Apex
adheli.tavaresa3a032d2023-08-10 16:58:48 +010035 models.
36 </description>
eikrwaqa94302f2018-05-23 14:08:29 +010037
liamfallon3cb682f2019-04-16 11:20:08 +000038 <dependencies>
39 <dependency>
liamfallon85347562022-02-10 12:06:25 +000040 <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.tavaresa3a032d2023-08-10 16:58:48 +010056 <version>${version.antlr-runtime}</version>
liamfallon85347562022-02-10 12:06:25 +000057 </dependency>
58 <dependency>
liamfallon3cb682f2019-04-16 11:20:08 +000059 <groupId>com.h2database</groupId>
60 <artifactId>h2</artifactId>
61 <scope>test</scope>
62 </dependency>
adheli.tavaresa3a032d2023-08-10 16:58:48 +010063 <dependency>
64 <groupId>com.google.guava</groupId>
65 <artifactId>guava</artifactId>
66 </dependency>
liamfallon3cb682f2019-04-16 11:20:08 +000067 </dependencies>
a.sreekumarf1f9a302020-03-25 23:01:06 +000068</project>