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 | ================================================================================ |
bobbymander | cc02160 | 2018-03-28 15:05:33 -0400 | [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 | |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.engine</groupId> |
| 27 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | dca5220 | 2018-04-13 15:55:51 -0400 | [diff] [blame] | 28 | <version>1.2.1-SNAPSHOT</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | <artifactId>ONAP-XACML</artifactId> |
| 31 | <packaging>jar</packaging> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.onap.policy.engine</groupId> |
| 35 | <version>${project.version}</version> |
| 36 | <artifactId>PolicyEngineUtils</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>commons-cli</groupId> |
| 40 | <artifactId>commons-cli</artifactId> |
| 41 | <version>1.2</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>commons-io</groupId> |
| 45 | <artifactId>commons-io</artifactId> |
| 46 | <version>2.4</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.httpcomponents</groupId> |
| 50 | <artifactId>httpcore</artifactId> |
| 51 | <version>4.4.4</version> |
| 52 | </dependency> |
| 53 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 54 | <groupId>com.att.research.xacml</groupId> |
| 55 | <artifactId>xacml</artifactId> |
Pamela Dragosh | cfe70c8 | 2018-02-09 09:50:17 -0500 | [diff] [blame] | 56 | <version>1.0.1</version> |
Pamela Dragosh | caead01 | 2018-03-01 18:00:06 -0500 | [diff] [blame] | 57 | <exclusions> |
| 58 | <!-- The LDAP PIP uses velocity which pulls this insecure jar in. We |
| 59 | are not using that PIP and can safely exclude this jar to resolve CLM issue. |
| 60 | --> |
| 61 | <exclusion> |
| 62 | <groupId>commons-collections</groupId> |
| 63 | <artifactId>commons-collections</artifactId> |
| 64 | </exclusion> |
| 65 | </exclusions> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 66 | </dependency> |
| 67 | </dependencies> |
| 68 | </project> |