waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
adheli.tavares | 21ec4ae | 2024-04-10 14:45:09 +0100 | [diff] [blame] | 4 | Copyright (C) 2019-2020, 2022-2024 Nordix Foundation. |
Rashmi Pujar | df756c6 | 2021-11-26 07:44:23 -0500 | [diff] [blame] | 5 | Modifications Copyright (C) 2021 Bell Canada Intellectual Property. All rights reserved. |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | |
| 19 | SPDX-License-Identifier: Apache-2.0 |
| 20 | ============LICENSE_END========================================================= |
| 21 | --> |
arkadiusz.adamski | e66664a | 2021-04-27 09:17:47 +0100 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.apex-pdp.services</groupId> |
| 27 | <artifactId>services</artifactId> |
rameshiyer27 | 9551484 | 2024-07-12 14:00:54 +0000 | [diff] [blame^] | 28 | <version>4.0.1-SNAPSHOT</version> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>services-engine</artifactId> |
| 32 | <name>${project.artifactId}</name> |
arkadiusz.adamski | e66664a | 2021-04-27 09:17:47 +0100 | [diff] [blame] | 33 | <description>External services and infrastructure for adding plugins to the Apex policy execution engine |
| 34 | </description> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 38 | <groupId>org.onap.policy.common</groupId> |
| 39 | <artifactId>utils</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
liamfallon | f325083 | 2018-08-30 09:37:29 +0100 | [diff] [blame] | 42 | <groupId>org.onap.policy.common</groupId> |
| 43 | <artifactId>common-parameters</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
Rashmi Pujar | df756c6 | 2021-11-26 07:44:23 -0500 | [diff] [blame] | 46 | <groupId>io.prometheus</groupId> |
| 47 | <artifactId>simpleclient</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
adheli.tavares | 21ec4ae | 2024-04-10 14:45:09 +0100 | [diff] [blame] | 50 | <groupId>io.prometheus</groupId> |
| 51 | <artifactId>simpleclient_servlet_jakarta</artifactId> |
| 52 | <scope>runtime</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 55 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
liamfallon | f0fd964 | 2022-02-11 00:43:14 +0000 | [diff] [blame] | 56 | <artifactId>core</artifactId> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 60 | <groupId>commons-cli</groupId> |
| 61 | <artifactId>commons-cli</artifactId> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 62 | </dependency> |
liamfallon | 5b416f0 | 2018-10-05 23:33:00 +0100 | [diff] [blame] | 63 | <dependency> |
a.sreekumar | 82da1e9 | 2019-10-16 11:46:21 +0100 | [diff] [blame] | 64 | <groupId>org.onap.policy.models</groupId> |
| 65 | <artifactId>policy-models-pdp</artifactId> |
a.sreekumar | 82da1e9 | 2019-10-16 11:46:21 +0100 | [diff] [blame] | 66 | <version>${version.policy.models}</version> |
| 67 | </dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 68 | </dependencies> |
| 69 | |
| 70 | <build> |
| 71 | <resources> |
| 72 | <!-- Output the version of Apex --> |
| 73 | <resource> |
| 74 | <directory>src/main/resources</directory> |
| 75 | <filtering>true</filtering> |
| 76 | <includes> |
| 77 | <include>**/version.txt</include> |
| 78 | </includes> |
| 79 | </resource> |
| 80 | <resource> |
| 81 | <directory>src/main/resources</directory> |
| 82 | <filtering>false</filtering> |
| 83 | <excludes> |
| 84 | <exclude>**/version.txt</exclude> |
| 85 | </excludes> |
| 86 | </resource> |
| 87 | </resources> |
| 88 | </build> |
liamfallon | 8534756 | 2022-02-10 12:06:25 +0000 | [diff] [blame] | 89 | </project> |