Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 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 |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 23 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 24 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 28 | <artifactId>applications</artifactId> |
jhh | 59dce2f | 2020-05-28 17:12:36 -0500 | [diff] [blame] | 29 | <version>2.1.4-SNAPSHOT</version> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>common</artifactId> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>junit</groupId> |
| 37 | <artifactId>junit</artifactId> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
Jim Hahn | 77d4dd1 | 2019-07-22 10:57:57 -0400 | [diff] [blame] | 41 | <groupId>org.powermock</groupId> |
| 42 | <artifactId>powermock-api-mockito</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
Pamela Dragosh | d2daf7e | 2019-03-27 06:40:18 -0400 | [diff] [blame] | 46 | <groupId>com.h2database</groupId> |
| 47 | <artifactId>h2</artifactId> |
| 48 | <scope>test</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 51 | <groupId>org.onap.policy.common</groupId> |
Jim Hahn | 98873e8 | 2019-08-28 15:20:18 -0400 | [diff] [blame] | 52 | <artifactId>policy-endpoints</artifactId> |
| 53 | <version>${policy.common.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onap.policy.common</groupId> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 57 | <artifactId>utils-test</artifactId> |
| 58 | <version>${policy.common.version}</version> |
| 59 | </dependency> |
Pamela Dragosh | d5c3b36 | 2019-03-21 19:45:45 -0400 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>com.att.research.xacml</groupId> |
| 62 | <artifactId>xacml-pdp</artifactId> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 63 | <version>2.0.1</version> |
Pamela Dragosh | d5c3b36 | 2019-03-21 19:45:45 -0400 | [diff] [blame] | 64 | </dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 65 | </dependencies> |
| 66 | </project> |