Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 4 | ================================================================================ |
Pamela Dragosh | fabdecc | 2021-01-19 16:37:48 -0500 | [diff] [blame] | 5 | Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 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 |
Pamela Dragosh | b0a27ab | 2020-03-10 07:54:05 -0400 | [diff] [blame] | 10 | |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 11 | http://www.apache.org/licenses/LICENSE-2.0 |
Pamela Dragosh | b0a27ab | 2020-03-10 07:54:05 -0400 | [diff] [blame] | 12 | |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 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> |
liamfallon | d0c4758 | 2022-03-11 18:03:06 +0000 | [diff] [blame] | 29 | <version>2.6.2-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> |
HOCKLA | 82b162b | 2020-01-14 11:39:47 -0600 | [diff] [blame] | 42 | <artifactId>powermock-api-mockito2</artifactId> |
Jim Hahn | 77d4dd1 | 2019-07-22 10:57:57 -0400 | [diff] [blame] | 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
HOCKLA | 82b162b | 2020-01-14 11:39:47 -0600 | [diff] [blame] | 46 | <groupId>javax.xml.bind</groupId> |
| 47 | <artifactId>jaxb-api</artifactId> |
| 48 | <version>${version.javax.bind}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.glassfish.jaxb</groupId> |
| 52 | <artifactId>jaxb-runtime</artifactId> |
| 53 | <version>${version.javax.bind}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
Pamela Dragosh | d2daf7e | 2019-03-27 06:40:18 -0400 | [diff] [blame] | 56 | <groupId>com.h2database</groupId> |
| 57 | <artifactId>h2</artifactId> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
Jim Hahn | 3c703e2 | 2020-05-29 11:43:49 -0400 | [diff] [blame] | 61 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 62 | <artifactId>guard</artifactId> |
| 63 | <version>${policy.models.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 66 | <groupId>org.onap.policy.common</groupId> |
Jim Hahn | 98873e8 | 2019-08-28 15:20:18 -0400 | [diff] [blame] | 67 | <artifactId>policy-endpoints</artifactId> |
| 68 | <version>${policy.common.version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.onap.policy.common</groupId> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 72 | <artifactId>utils</artifactId> |
| 73 | <version>${policy.common.version}</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.onap.policy.common</groupId> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 77 | <artifactId>utils-test</artifactId> |
| 78 | <version>${policy.common.version}</version> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame] | 79 | <scope>test</scope> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 80 | </dependency> |
Pamela Dragosh | d5c3b36 | 2019-03-21 19:45:45 -0400 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>com.att.research.xacml</groupId> |
| 83 | <artifactId>xacml-pdp</artifactId> |
Pamela Dragosh | fabdecc | 2021-01-19 16:37:48 -0500 | [diff] [blame] | 84 | <version>3.0</version> |
Pamela Dragosh | d5c3b36 | 2019-03-21 19:45:45 -0400 | [diff] [blame] | 85 | </dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 86 | </dependencies> |
| 87 | </project> |