blob: 66a4dbcac301208b29db47a1c5464220a8df5e15 [file] [log] [blame]
waqas.ikram75ff76e2018-06-06 11:04:36 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
adheli.tavares21ec4ae2024-04-10 14:45:09 +01004 Copyright (C) 2019-2020, 2022-2024 Nordix Foundation.
Rashmi Pujardf756c62021-11-26 07:44:23 -05005 Modifications Copyright (C) 2021 Bell Canada Intellectual Property. All rights reserved.
waqas.ikram75ff76e2018-06-06 11:04:36 +01006 ================================================================================
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.adamskie66664a2021-04-27 09:17:47 +010022<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.ikram75ff76e2018-06-06 11:04:36 +010024 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.policy.apex-pdp.services</groupId>
27 <artifactId>services</artifactId>
rameshiyer2795514842024-07-12 14:00:54 +000028 <version>4.0.1-SNAPSHOT</version>
waqas.ikram75ff76e2018-06-06 11:04:36 +010029 </parent>
30
31 <artifactId>services-engine</artifactId>
32 <name>${project.artifactId}</name>
arkadiusz.adamskie66664a2021-04-27 09:17:47 +010033 <description>External services and infrastructure for adding plugins to the Apex policy execution engine
34 </description>
waqas.ikram75ff76e2018-06-06 11:04:36 +010035
36 <dependencies>
37 <dependency>
liamfallonefdaa0d2018-08-03 16:12:01 +010038 <groupId>org.onap.policy.common</groupId>
39 <artifactId>utils</artifactId>
40 </dependency>
41 <dependency>
liamfallonf3250832018-08-30 09:37:29 +010042 <groupId>org.onap.policy.common</groupId>
43 <artifactId>common-parameters</artifactId>
44 </dependency>
45 <dependency>
Rashmi Pujardf756c62021-11-26 07:44:23 -050046 <groupId>io.prometheus</groupId>
47 <artifactId>simpleclient</artifactId>
48 </dependency>
49 <dependency>
adheli.tavares21ec4ae2024-04-10 14:45:09 +010050 <groupId>io.prometheus</groupId>
51 <artifactId>simpleclient_servlet_jakarta</artifactId>
52 <scope>runtime</scope>
53 </dependency>
54 <dependency>
waqas.ikram75ff76e2018-06-06 11:04:36 +010055 <groupId>org.onap.policy.apex-pdp.core</groupId>
liamfallonf0fd9642022-02-11 00:43:14 +000056 <artifactId>core</artifactId>
waqas.ikram75ff76e2018-06-06 11:04:36 +010057 <version>${project.version}</version>
58 </dependency>
59 <dependency>
waqas.ikram75ff76e2018-06-06 11:04:36 +010060 <groupId>commons-cli</groupId>
61 <artifactId>commons-cli</artifactId>
waqas.ikram75ff76e2018-06-06 11:04:36 +010062 </dependency>
liamfallon5b416f02018-10-05 23:33:00 +010063 <dependency>
a.sreekumar82da1e92019-10-16 11:46:21 +010064 <groupId>org.onap.policy.models</groupId>
65 <artifactId>policy-models-pdp</artifactId>
a.sreekumar82da1e92019-10-16 11:46:21 +010066 <version>${version.policy.models}</version>
67 </dependency>
waqas.ikram75ff76e2018-06-06 11:04:36 +010068 </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>
liamfallon85347562022-02-10 12:06:25 +000089</project>