Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - XACML PDP |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2019 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> |
Jim Hahn | 88a247e | 2019-09-10 11:14:09 -0400 | [diff] [blame] | 27 | <version>2.2.0-SNAPSHOT</version> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>optimization</artifactId> |
| 31 | |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>This modules contains applications that implement policy-types for XACML PDP.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
Pamela Dragosh | 85b5178 | 2019-08-30 15:21:05 -0400 | [diff] [blame] | 37 | <groupId>org.powermock</groupId> |
| 38 | <artifactId>powermock-api-mockito</artifactId> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 42 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 43 | <artifactId>common</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame^] | 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> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 52 | </dependencies> |
| 53 | |
| 54 | </project> |