Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - XACML PDP |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
liamfallon | 1e82ff4 | 2023-01-31 10:43:09 +0000 | [diff] [blame^] | 6 | Modifications Copyright (C) 2023 Nordix Foundation. |
Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 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.applications</groupId> |
| 27 | <artifactId>applications</artifactId> |
liamfallon | f1aed94 | 2022-12-15 16:19:46 +0000 | [diff] [blame] | 28 | <version>2.8.1-SNAPSHOT</version> |
Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 29 | </parent> |
| 30 | |
Jim Hahn | 97be46a | 2020-09-29 11:16:14 -0400 | [diff] [blame] | 31 | <artifactId>xacml-match</artifactId> |
Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 32 | |
| 33 | <name>${project.artifactId}</name> |
| 34 | <description>This modules contains the Match applications.</description> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
liamfallon | 1e82ff4 | 2023-01-31 10:43:09 +0000 | [diff] [blame^] | 38 | <groupId>org.mockito</groupId> |
| 39 | <artifactId>mockito-core</artifactId> |
Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 40 | <scope>test</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 44 | <artifactId>common</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 49 | <artifactId>xacml-test</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | </dependencies> |
| 54 | |
| 55 | </project> |