waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | f0fd964 | 2022-02-11 00:43:14 +0000 | [diff] [blame] | 4 | Copyright (C) 2019-2020,2022 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> |
liamfallon | a54acdf | 2022-12-15 16:19:41 +0000 | [diff] [blame] | 28 | <version>2.9.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> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 50 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
liamfallon | f0fd964 | 2022-02-11 00:43:14 +0000 | [diff] [blame] | 51 | <artifactId>core</artifactId> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 55 | <groupId>commons-cli</groupId> |
| 56 | <artifactId>commons-cli</artifactId> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 57 | </dependency> |
liamfallon | 5b416f0 | 2018-10-05 23:33:00 +0100 | [diff] [blame] | 58 | <dependency> |
| 59 | <groupId>org.mockito</groupId> |
arkadiusz.adamski | e66664a | 2021-04-27 09:17:47 +0100 | [diff] [blame] | 60 | <artifactId>mockito-core</artifactId> |
liamfallon | 5b416f0 | 2018-10-05 23:33:00 +0100 | [diff] [blame] | 61 | <scope>test</scope> |
| 62 | </dependency> |
a.sreekumar | 82da1e9 | 2019-10-16 11:46:21 +0100 | [diff] [blame] | 63 | <dependency> |
liamfallon | 69c227a | 2020-04-06 15:41:28 +0100 | [diff] [blame] | 64 | <groupId>org.awaitility</groupId> |
| 65 | <artifactId>awaitility</artifactId> |
| 66 | <scope>test</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
a.sreekumar | 82da1e9 | 2019-10-16 11:46:21 +0100 | [diff] [blame] | 69 | <groupId>org.onap.policy.models</groupId> |
| 70 | <artifactId>policy-models-pdp</artifactId> |
| 71 | <exclusions> |
| 72 | <exclusion> |
| 73 | <groupId>javax.ws.rs</groupId> |
| 74 | <artifactId>javax.ws.rs-api</artifactId> |
| 75 | </exclusion> |
| 76 | </exclusions> |
| 77 | <version>${version.policy.models}</version> |
| 78 | </dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 79 | </dependencies> |
| 80 | |
| 81 | <build> |
| 82 | <resources> |
| 83 | <!-- Output the version of Apex --> |
| 84 | <resource> |
| 85 | <directory>src/main/resources</directory> |
| 86 | <filtering>true</filtering> |
| 87 | <includes> |
| 88 | <include>**/version.txt</include> |
| 89 | </includes> |
| 90 | </resource> |
| 91 | <resource> |
| 92 | <directory>src/main/resources</directory> |
| 93 | <filtering>false</filtering> |
| 94 | <excludes> |
| 95 | <exclude>**/version.txt</exclude> |
| 96 | </excludes> |
| 97 | </resource> |
| 98 | </resources> |
| 99 | </build> |
liamfallon | 8534756 | 2022-02-10 12:06:25 +0000 | [diff] [blame] | 100 | </project> |