ec3238682772844331b103433085cba43bbbeb0e
[policy/apex-pdp.git] / services / services-engine / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Copyright (C) 2019-2020, 2022-2024 Nordix Foundation.
5    Modifications Copyright (C) 2021 Bell Canada Intellectual Property. All rights reserved.
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 -->
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">
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.policy.apex-pdp.services</groupId>
27         <artifactId>services</artifactId>
28         <version>3.1.2-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>services-engine</artifactId>
32     <name>${project.artifactId}</name>
33     <description>External services and infrastructure for adding plugins to the Apex policy execution engine
34     </description>
35
36     <dependencies>
37         <dependency>
38             <groupId>org.onap.policy.common</groupId>
39             <artifactId>utils</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.onap.policy.common</groupId>
43             <artifactId>common-parameters</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>io.prometheus</groupId>
47             <artifactId>simpleclient</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>io.prometheus</groupId>
51             <artifactId>simpleclient_servlet_jakarta</artifactId>
52             <scope>runtime</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.onap.policy.apex-pdp.core</groupId>
56             <artifactId>core</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>commons-cli</groupId>
61             <artifactId>commons-cli</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.onap.policy.models</groupId>
65             <artifactId>policy-models-pdp</artifactId>
66             <version>${version.policy.models}</version>
67         </dependency>
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>
89 </project>