blob: 75bf1c0363baf472d60b59af76c8e93670e74dd1 [file] [log] [blame]
Guo Ruijing073cc182017-07-31 08:47:35 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP Policy Engine
5 ================================================================================
bobbymandercc021602018-03-28 15:05:33 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Guo Ruijing073cc182017-07-31 08:47:35 +00007 ================================================================================
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
liamfallon4929b5e2018-10-31 17:28:58 +000022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.policy.engine</groupId>
26 <artifactId>PolicyEngineSuite</artifactId>
Jim Hahn1c5d6cd2019-09-17 12:14:50 -040027 <version>1.6.0-SNAPSHOT</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040028 </parent>
29 <artifactId>ONAP-XACML</artifactId>
30 <packaging>jar</packaging>
31 <dependencies>
32 <dependency>
33 <groupId>org.onap.policy.engine</groupId>
34 <version>${project.version}</version>
35 <artifactId>PolicyEngineUtils</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>commons-cli</groupId>
39 <artifactId>commons-cli</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>commons-io</groupId>
43 <artifactId>commons-io</artifactId>
44 <version>2.4</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.httpcomponents</groupId>
48 <artifactId>httpcore</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>com.att.research.xacml</groupId>
52 <artifactId>xacml</artifactId>
Pamela Dragosh510c4392018-11-02 11:10:27 -040053 <version>1.0.2</version>
Pamela Dragoshcaead012018-03-01 18:00:06 -050054 <exclusions>
55 <!-- The LDAP PIP uses velocity which pulls this insecure jar in. We
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040056 are not using that PIP and can safely exclude this jar to resolve CLM issue.
57 -->
58 <exclusion>
59 <groupId>commons-collections</groupId>
60 <artifactId>commons-collections</artifactId>
61 </exclusion>
Pamela Dragoshcaead012018-03-01 18:00:06 -050062 </exclusions>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040063 </dependency>
64 </dependencies>
Guo Ruijing073cc182017-07-31 08:47:35 +000065</project>