Release policy/xacml-pdp
[policy/xacml-pdp.git] / main / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - XACML PDP
4   ================================================================================
5   Copyright (C) 2019-2022 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2020 Bell Canada.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11
12        http://www.apache.org/licenses/LICENSE-2.0
13
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
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.xacml-pdp</groupId>
27         <artifactId>policy-xacml-pdp</artifactId>
28         <version>2.8.0</version>
29     </parent>
30
31     <artifactId>xacml-main</artifactId>
32
33     <name>${project.artifactId}</name>
34     <description>The main module of Policy PDP-X that handles startup, lifecycle management, and parameters.</description>
35
36     <properties>
37         <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
38     </properties>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.onap.policy.common</groupId>
43             <artifactId>capabilities</artifactId>
44             <version>${policy.common.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.onap.policy.common</groupId>
48             <artifactId>policy-endpoints</artifactId>
49             <version>${policy.common.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>commons-cli</groupId>
53             <artifactId>commons-cli</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.google.code.gson</groupId>
57             <artifactId>gson</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.policy.common</groupId>
61             <artifactId>common-parameters</artifactId>
62             <version>${policy.common.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
66             <artifactId>common</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.onap.policy.common</groupId>
71             <artifactId>utils-test</artifactId>
72             <version>${policy.common.version}</version> 
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
77             <artifactId>xacml-monitoring</artifactId>
78             <version>${project.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
82             <artifactId>xacml-guard</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
87             <artifactId>xacml-optimization</artifactId>
88             <version>${project.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
92             <artifactId>xacml-naming</artifactId>
93             <version>${project.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
97             <artifactId>xacml-native</artifactId>
98             <version>${project.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
102             <artifactId>xacml-match</artifactId>
103             <version>${project.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>org.onap.policy.models</groupId>
107             <artifactId>policy-models-pdp</artifactId>
108             <version>${policy.models.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>io.prometheus</groupId>
112             <artifactId>simpleclient_logback</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.onap.policy.xacml-pdp</groupId>
116             <artifactId>xacml-test</artifactId>
117             <version>${project.version}</version>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.powermock</groupId>
122             <artifactId>powermock-api-mockito2</artifactId>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.assertj</groupId>
127             <artifactId>assertj-core</artifactId>
128             <scope>test</scope>
129         </dependency>
130     </dependencies>
131
132     <build>
133         <resources>
134             <!-- Output the version of the pdpx service -->
135             <resource>
136                 <directory>src/main/resources</directory>
137                 <filtering>true</filtering>
138                 <includes>
139                     <include>**/version.txt</include>
140                 </includes>
141             </resource>
142             <resource>
143                 <directory>src/main/resources</directory>
144                 <filtering>false</filtering>
145                 <excludes>
146                     <exclude>**/version.txt</exclude>
147                 </excludes>
148             </resource>
149         </resources>
150     </build>
151
152 </project>