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. |
RossC | 60e13ff | 2020-06-24 17:03:21 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 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" |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 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> |
liamfallon | f1aed94 | 2022-12-15 16:19:46 +0000 | [diff] [blame^] | 30 | <version>3.7.1-SNAPSHOT</version> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 31 | <relativePath /> |
| 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> |
liamfallon | f1aed94 | 2022-12-15 16:19:46 +0000 | [diff] [blame^] | 36 | <version>2.8.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> |
liamfallon | f1aed94 | 2022-12-15 16:19:46 +0000 | [diff] [blame^] | 44 | <policy.common.version>1.12.1-SNAPSHOT</policy.common.version> |
| 45 | <policy.models.version>2.8.1-SNAPSHOT</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> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 47 | </properties> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 48 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 49 | <modules> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 50 | <module>main</module> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 51 | <module>applications</module> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 52 | <module>packages</module> |
Bilal A | abd92e4 | 2019-03-05 13:18:49 -0500 | [diff] [blame] | 53 | <module>testsuites</module> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame] | 54 | <module>xacml-test</module> |
Pamela Dragosh | f0bd7f4 | 2020-10-26 09:59:09 -0400 | [diff] [blame] | 55 | <module>tutorials</module> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 56 | </modules> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 57 | |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 58 | <dependencies> |
| 59 | <dependency> |
| 60 | <groupId>junit</groupId> |
| 61 | <artifactId>junit</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 65 | <groupId>io.cucumber</groupId> |
| 66 | <artifactId>cucumber-java</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>io.cucumber</groupId> |
| 71 | <artifactId>cucumber-junit</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 75 | <groupId>org.assertj</groupId> |
| 76 | <artifactId>assertj-core</artifactId> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.slf4j</groupId> |
| 81 | <artifactId>slf4j-ext</artifactId> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.slf4j</groupId> |
| 85 | <artifactId>slf4j-api</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>ch.qos.logback</groupId> |
| 89 | <artifactId>logback-core</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>ch.qos.logback</groupId> |
| 93 | <artifactId>logback-classic</artifactId> |
| 94 | </dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.yaml</groupId> |
| 97 | <artifactId>snakeyaml</artifactId> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 100 | <groupId>org.projectlombok</groupId> |
| 101 | <artifactId>lombok</artifactId> |
| 102 | </dependency> |
| 103 | <dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 104 | <groupId>org.json</groupId> |
| 105 | <artifactId>json</artifactId> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 106 | </dependency> |
| 107 | <dependency> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 108 | <groupId>org.onap.policy.models</groupId> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 109 | <artifactId>policy-models-decisions</artifactId> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 110 | <version>${policy.models.version}</version> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 111 | </dependency> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 112 | <dependency> |
| 113 | <groupId>org.onap.policy.models</groupId> |
| 114 | <artifactId>policy-models-tosca</artifactId> |
| 115 | <version>${policy.models.version}</version> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 116 | </dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 117 | </dependencies> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 118 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 119 | <distributionManagement> |
| 120 | <site> |
| 121 | <id>ecomp-site</id> |
| 122 | <url>dav:${nexusproxy}${sitePath}</url> |
| 123 | </site> |
| 124 | </distributionManagement> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 125 | </project> |