blob: 916ed8caf61f8930a17d410cfc5b27c1cbd09cc2 [file] [log] [blame]
Pamela Dragosh51cc3732018-05-23 08:38:45 -04001<!--
2 ============LICENSE_START=======================================================
Pamela Dragoshd39c5e52018-05-23 11:47:11 -04003 ONAP Policy Engine - XACML PDP
Pamela Dragosh51cc3732018-05-23 08:38:45 -04004 ================================================================================
Pamela Dragosh04150572021-02-18 15:15:26 -06005 Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved.
adheli.tavares257358f2024-07-24 21:09:09 +01006 Modifications Copyright (C) 2020, 2023-2024 Nordix Foundation.
Ram Krishna Verma2d9d17f2020-09-16 15:26:58 -04007 Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
Pamela Dragosh51cc3732018-05-23 08:38:45 -04008 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
Jim Hahn1df1c6a2019-09-12 16:05:18 -040012
Pamela Dragosh51cc3732018-05-23 08:38:45 -040013 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahn1df1c6a2019-09-12 16:05:18 -040014
Pamela Dragosh51cc3732018-05-23 08:38:45 -040015 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 -->
22
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
adheli.tavares56c7a532023-09-06 09:54:17 +010024 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040025 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040026
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040027 <parent>
28 <groupId>org.onap.policy.parent</groupId>
29 <artifactId>integration</artifactId>
rameshiyer27e99760a2024-11-18 16:31:45 +000030 <version>5.0.1</version>
liamfallon5ec4ea92023-10-18 09:08:38 +010031 <relativePath />
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040032 </parent>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040033
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040034 <groupId>org.onap.policy.xacml-pdp</groupId>
35 <artifactId>policy-xacml-pdp</artifactId>
rameshiyer27e8addde2024-07-12 14:01:04 +000036 <version>4.0.1-SNAPSHOT</version>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040037
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040038 <packaging>pom</packaging>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040039
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040040 <name>policy-xacml-pdp</name>
41 <description>This code implements the XACML PDP engine</description>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040042
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040043 <properties>
rameshiyer27e99760a2024-11-18 16:31:45 +000044 <policy.common.version>3.0.1</policy.common.version>
45 <policy.models.version>4.0.1</policy.models.version>
Pamela Dragosh04150572021-02-18 15:15:26 -060046 <jacoco.dataFile>${project.basedir}/target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
adheli.tavaresd101f302024-11-06 11:46:41 +000047 <xacml.version>4.0.0</xacml.version>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040048 </properties>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040049
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040050 <modules>
Michael Mokryf239a662019-01-31 13:16:55 -060051 <module>main</module>
Pamela Dragosha0265962019-03-03 19:01:08 -050052 <module>applications</module>
Michael Mokryab1824d2019-02-13 10:34:48 -060053 <module>packages</module>
Bilal Aabd92e42019-03-05 13:18:49 -050054 <module>testsuites</module>
Ali Hockla6f145252019-10-01 18:42:04 -050055 <module>xacml-test</module>
Pamela Dragoshf0bd7f42020-10-26 09:59:09 -040056 <module>tutorials</module>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040057 </modules>
Jim Hahn1df1c6a2019-09-12 16:05:18 -040058
adheli.tavaresd101f302024-11-06 11:46:41 +000059 <dependencyManagement>
60 <dependencies>
61 <dependency>
62 <groupId>com.att.research.xacml</groupId>
63 <artifactId>xacml-pdp</artifactId>
64 <version>${xacml.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>com.att.research.xacml</groupId>
68 <artifactId>xacml</artifactId>
69 <version>${xacml.version}</version>
70 </dependency>
71 </dependencies>
72 </dependencyManagement>
73
Michael Mokryf239a662019-01-31 13:16:55 -060074 <dependencies>
75 <dependency>
adheli.tavares257358f2024-07-24 21:09:09 +010076 <groupId>org.junit.jupiter</groupId>
77 <artifactId>junit-jupiter-api</artifactId>
Pamela Dragosha0265962019-03-03 19:01:08 -050078 <scope>test</scope>
79 </dependency>
80 <dependency>
Michael Mokryf239a662019-01-31 13:16:55 -060081 <groupId>org.assertj</groupId>
82 <artifactId>assertj-core</artifactId>
Michael Mokry5dd6d162019-04-02 07:33:28 -050083 </dependency>
Michael Mokryf239a662019-01-31 13:16:55 -060084 </dependencies>
Jim Hahn1df1c6a2019-09-12 16:05:18 -040085
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040086 <distributionManagement>
87 <site>
88 <id>ecomp-site</id>
89 <url>dav:${nexusproxy}${sitePath}</url>
90 </site>
91 </distributionManagement>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040092</project>