Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP Policy Engine |
| 5 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [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 | |
| 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 25 | |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>ONAP-PDP</artifactId> |
| 28 | <description>ONAP-PDP</description> |
| 29 | <packaging>jar</packaging> |
| 30 | <parent> |
| 31 | <groupId>org.onap.policy.engine</groupId> |
| 32 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 33 | <version>1.2.0-SNAPSHOT</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 34 | </parent> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.policy.engine</groupId> |
| 38 | <version>${project.version}</version> |
| 39 | <artifactId>ONAP-REST</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.httpcomponents</groupId> |
| 43 | <artifactId>httpclient</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 44 | <version>${httpclient.version}</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.httpcomponents</groupId> |
| 48 | <artifactId>httpcore</artifactId> |
| 49 | <version>4.4.4</version> |
| 50 | </dependency> |
| 51 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 52 | <groupId>commons-codec</groupId> |
| 53 | <artifactId>commons-codec</artifactId> |
| 54 | <version>1.10</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>commons-logging</groupId> |
| 58 | <artifactId>commons-logging</artifactId> |
| 59 | <version>1.2</version> |
| 60 | <exclusions> |
| 61 | <exclusion> |
| 62 | <groupId>javax.servlet</groupId> |
| 63 | <artifactId>servlet-api</artifactId> |
| 64 | </exclusion> |
| 65 | </exclusions> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>com.google.guava</groupId> |
| 69 | <artifactId>guava</artifactId> |
| 70 | <version>19.0</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>com.att.research.xacml</groupId> |
| 74 | <artifactId>xacml-pdp</artifactId> |
Pamela Dragosh | cfe70c8 | 2018-02-09 09:50:17 -0500 | [diff] [blame^] | 75 | <version>1.0.1</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>junit</groupId> |
| 79 | <artifactId>junit</artifactId> |
| 80 | <version>4.11</version> |
| 81 | </dependency> |
| 82 | </dependencies> |
| 83 | </project> |