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. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 26 | <artifactId>applications</artifactId> |
Pamela Dragosh | c5f3b56 | 2020-10-07 16:36:52 -0400 | [diff] [blame^] | 27 | <version>2.3.3-SNAPSHOT</version> |
Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 28 | </parent> |
| 29 | |
Jim Hahn | 97be46a | 2020-09-29 11:16:14 -0400 | [diff] [blame] | 30 | <artifactId>xacml-match</artifactId> |
Pamela Dragosh | f8d2c21 | 2020-08-24 15:50:31 -0400 | [diff] [blame] | 31 | |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>This modules contains the Match applications.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.powermock</groupId> |
| 38 | <artifactId>powermock-api-mockito2</artifactId> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 43 | <artifactId>common</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 48 | <artifactId>xacml-test</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | </dependencies> |
| 53 | |
| 54 | </project> |