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 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 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 | <parent> |
| 28 | <groupId>org.onap.policy.engine</groupId> |
| 29 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 30 | <version>1.2.0-SNAPSHOT</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 31 | </parent> |
| 32 | <artifactId>ONAP-XACML</artifactId> |
| 33 | <packaging>jar</packaging> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.policy.engine</groupId> |
| 37 | <version>${project.version}</version> |
| 38 | <artifactId>PolicyEngineUtils</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>commons-cli</groupId> |
| 42 | <artifactId>commons-cli</artifactId> |
| 43 | <version>1.2</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>commons-io</groupId> |
| 47 | <artifactId>commons-io</artifactId> |
| 48 | <version>2.4</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.apache.httpcomponents</groupId> |
| 52 | <artifactId>httpcore</artifactId> |
| 53 | <version>4.4.4</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>junit</groupId> |
| 57 | <artifactId>junit</artifactId> |
| 58 | <version>4.11</version> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.mockito</groupId> |
| 63 | <artifactId>mockito-core</artifactId> |
| 64 | <version>2.7.22</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.springframework</groupId> |
| 68 | <artifactId>spring-mock</artifactId> |
| 69 | <version>2.0.8</version> |
| 70 | <exclusions> |
| 71 | <exclusion> |
| 72 | <groupId>commons-logging</groupId> |
| 73 | <artifactId>commons-logging</artifactId> |
| 74 | </exclusion> |
| 75 | </exclusions> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>com.mockrunner</groupId> |
| 79 | <artifactId>mockrunner</artifactId> |
| 80 | <version>0.3.1</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>com.att.research.xacml</groupId> |
| 84 | <artifactId>xacml</artifactId> |
| 85 | <version>1.0.0</version> |
| 86 | </dependency> |
| 87 | </dependencies> |
| 88 | </project> |