Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Pamela Dragosh | d39c5e5 | 2018-05-23 11:47:11 -0400 | [diff] [blame] | 3 | ONAP Policy Engine - XACML PDP |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 4 | ================================================================================ |
Pamela Dragosh | 0415057 | 2021-02-18 15:15:26 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved. |
adheli.tavares | 257358f | 2024-07-24 21:09:09 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2020, 2023-2024 Nordix Foundation. |
Ram Krishna Verma | 2d9d17f | 2020-09-16 15:26:58 -0400 | [diff] [blame] | 7 | Modifications Copyright (C) 2020 Bell Canada. All rights reserved. |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 8 | ================================================================================ |
| 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 Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 12 | |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 13 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 14 | |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 15 | 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.tavares | 56c7a53 | 2023-09-06 09:54:17 +0100 | [diff] [blame] | 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 26 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.onap.policy.parent</groupId> |
| 29 | <artifactId>integration</artifactId> |
rameshiyer27 | e99760a | 2024-11-18 16:31:45 +0000 | [diff] [blame] | 30 | <version>5.0.1</version> |
liamfallon | 5ec4ea9 | 2023-10-18 09:08:38 +0100 | [diff] [blame] | 31 | <relativePath /> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 32 | </parent> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 33 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 34 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 35 | <artifactId>policy-xacml-pdp</artifactId> |
rameshiyer27 | e8addde | 2024-07-12 14:01:04 +0000 | [diff] [blame] | 36 | <version>4.0.1-SNAPSHOT</version> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 37 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 38 | <packaging>pom</packaging> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 39 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 40 | <name>policy-xacml-pdp</name> |
| 41 | <description>This code implements the XACML PDP engine</description> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 42 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 43 | <properties> |
rameshiyer27 | e99760a | 2024-11-18 16:31:45 +0000 | [diff] [blame] | 44 | <policy.common.version>3.0.1</policy.common.version> |
| 45 | <policy.models.version>4.0.1</policy.models.version> |
Pamela Dragosh | 0415057 | 2021-02-18 15:15:26 -0600 | [diff] [blame] | 46 | <jacoco.dataFile>${project.basedir}/target/code-coverage/jacoco-ut.exec</jacoco.dataFile> |
adheli.tavares | d101f30 | 2024-11-06 11:46:41 +0000 | [diff] [blame] | 47 | <xacml.version>4.0.0</xacml.version> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 48 | </properties> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 49 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 50 | <modules> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 51 | <module>main</module> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 52 | <module>applications</module> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 53 | <module>packages</module> |
Bilal A | abd92e4 | 2019-03-05 13:18:49 -0500 | [diff] [blame] | 54 | <module>testsuites</module> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame] | 55 | <module>xacml-test</module> |
Pamela Dragosh | f0bd7f4 | 2020-10-26 09:59:09 -0400 | [diff] [blame] | 56 | <module>tutorials</module> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 57 | </modules> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 58 | |
adheli.tavares | d101f30 | 2024-11-06 11:46:41 +0000 | [diff] [blame] | 59 | <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 Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 74 | <dependencies> |
| 75 | <dependency> |
adheli.tavares | 257358f | 2024-07-24 21:09:09 +0100 | [diff] [blame] | 76 | <groupId>org.junit.jupiter</groupId> |
| 77 | <artifactId>junit-jupiter-api</artifactId> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 78 | <scope>test</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 81 | <groupId>org.assertj</groupId> |
| 82 | <artifactId>assertj-core</artifactId> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 83 | </dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 84 | </dependencies> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 85 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 86 | <distributionManagement> |
| 87 | <site> |
| 88 | <id>ecomp-site</id> |
| 89 | <url>dav:${nexusproxy}${sitePath}</url> |
| 90 | </site> |
| 91 | </distributionManagement> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 92 | </project> |