blob: b251fee2e762f3152f71f9c9df9398e1f00b32ed [file] [log] [blame]
Michael Mokryf239a662019-01-31 13:16:55 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - XACML PDP
4 ================================================================================
jhh6c34a1a2022-04-07 13:19:27 -05005 Copyright (C) 2019-2022 AT&T Intellectual Property. All rights reserved.
Ram Krishna Vermaec3592f2020-02-05 16:32:11 -05006 Modifications Copyright (C) 2020 Bell Canada.
Michael Mokryf239a662019-01-31 13:16:55 -06007 ================================================================================
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
Pamela Dragosh04150572021-02-18 15:15:26 -060011
Michael Mokryf239a662019-01-31 13:16:55 -060012 http://www.apache.org/licenses/LICENSE-2.0
Pamela Dragosh04150572021-02-18 15:15:26 -060013
Michael Mokryf239a662019-01-31 13:16:55 -060014 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>
liamfallonf1aed942022-12-15 16:19:46 +000028 <version>2.8.1-SNAPSHOT</version>
Michael Mokryf239a662019-01-31 13:16:55 -060029 </parent>
30
Ram Krishna Vermaec3592f2020-02-05 16:32:11 -050031 <artifactId>xacml-main</artifactId>
Michael Mokryf239a662019-01-31 13:16:55 -060032
33 <name>${project.artifactId}</name>
34 <description>The main module of Policy PDP-X that handles startup, lifecycle management, and parameters.</description>
35
Pamela Dragosh04150572021-02-18 15:15:26 -060036 <properties>
37 <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
38 </properties>
39
Michael Mokryf239a662019-01-31 13:16:55 -060040 <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>
Pamela Dragoshb909b142019-03-09 11:48:44 -050064 <dependency>
65 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
66 <artifactId>common</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
Ali Hockla6f145252019-10-01 18:42:04 -050070 <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>
Pamela Dragoshb909b142019-03-09 11:48:44 -050076 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
Jim Hahn97be46a2020-09-29 11:16:14 -040077 <artifactId>xacml-monitoring</artifactId>
Pamela Dragoshb909b142019-03-09 11:48:44 -050078 <version>${project.version}</version>
79 </dependency>
Pamela Dragosh59c38b62019-03-15 14:30:00 -040080 <dependency>
81 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
Jim Hahn97be46a2020-09-29 11:16:14 -040082 <artifactId>xacml-guard</artifactId>
Pamela Dragosh59c38b62019-03-15 14:30:00 -040083 <version>${project.version}</version>
84 </dependency>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040085 <dependency>
86 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
Jim Hahn97be46a2020-09-29 11:16:14 -040087 <artifactId>xacml-optimization</artifactId>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040088 <version>${project.version}</version>
89 </dependency>
Michael Mokry5dd6d162019-04-02 07:33:28 -050090 <dependency>
Pamela Dragosh4ff3b262019-12-08 17:44:31 -050091 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
Jim Hahn97be46a2020-09-29 11:16:14 -040092 <artifactId>xacml-naming</artifactId>
Pamela Dragosh4ff3b262019-12-08 17:44:31 -050093 <version>${project.version}</version>
94 </dependency>
95 <dependency>
Chenfei Gaobdef9f52020-02-28 14:45:48 -050096 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
Jim Hahn97be46a2020-09-29 11:16:14 -040097 <artifactId>xacml-native</artifactId>
Chenfei Gaobdef9f52020-02-28 14:45:48 -050098 <version>${project.version}</version>
99 </dependency>
100 <dependency>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -0400101 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
Jim Hahn97be46a2020-09-29 11:16:14 -0400102 <artifactId>xacml-match</artifactId>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -0400103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
Michael Mokry5dd6d162019-04-02 07:33:28 -0500106 <groupId>org.onap.policy.models</groupId>
107 <artifactId>policy-models-pdp</artifactId>
108 <version>${policy.models.version}</version>
109 </dependency>
jh735805045cd2019-04-25 20:15:28 -0400110 <dependency>
jhh6c34a1a2022-04-07 13:19:27 -0500111 <groupId>io.prometheus</groupId>
112 <artifactId>simpleclient_logback</artifactId>
113 </dependency>
114 <dependency>
HOCKLA9ff68b12019-10-14 14:25:29 -0500115 <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>
jh735805045cd2019-04-25 20:15:28 -0400121 <groupId>org.powermock</groupId>
HOCKLA82b162b2020-01-14 11:39:47 -0600122 <artifactId>powermock-api-mockito2</artifactId>
jh735805045cd2019-04-25 20:15:28 -0400123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.assertj</groupId>
127 <artifactId>assertj-core</artifactId>
128 <scope>test</scope>
129 </dependency>
Michael Mokryf239a662019-01-31 13:16:55 -0600130 </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>