Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ECOMP 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.openecomp.policy.engine</groupId> |
| 29 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | 3234eb0 | 2017-03-10 14:54:53 -0500 | [diff] [blame] | 30 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 31 | </parent> |
Pamela Dragosh | 3bcaf89 | 2017-02-23 06:44:23 -0500 | [diff] [blame] | 32 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 33 | <artifactId>ECOMP-XACML</artifactId> |
| 34 | <packaging>jar</packaging> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.openecomp.policy.common</groupId> |
| 38 | <artifactId>integrity-monitor</artifactId> |
| 39 | <version>${common-modules.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.openecomp.policy.engine</groupId> |
| 43 | <version>${project.version}</version> |
| 44 | <artifactId>PolicyEngineUtils</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.openecomp.policy.common</groupId> |
| 48 | <artifactId>integrity-audit</artifactId> |
| 49 | <version>${common-modules.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.httpcomponents</groupId> |
| 53 | <artifactId>httpcore</artifactId> |
| 54 | <version>4.4.4</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.eclipse.persistence</groupId> |
| 58 | <artifactId>eclipselink</artifactId> |
| 59 | <version>2.5.2</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>commons-codec</groupId> |
| 63 | <artifactId>commons-codec</artifactId> |
| 64 | <version>1.5</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>commons-cli</groupId> |
| 68 | <artifactId>commons-cli</artifactId> |
| 69 | <version>1.2</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>commons-io</groupId> |
| 73 | <artifactId>commons-io</artifactId> |
| 74 | <version>2.4</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.apache.commons</groupId> |
| 78 | <artifactId>commons-lang3</artifactId> |
| 79 | <version>3.1</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>commons-logging</groupId> |
| 83 | <artifactId>commons-logging</artifactId> |
| 84 | <version>1.1.3</version> |
| 85 | <exclusions> |
| 86 | <exclusion> |
| 87 | <groupId>javax.servlet</groupId> |
| 88 | <artifactId>servlet-api</artifactId> |
| 89 | </exclusion> |
| 90 | </exclusions> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>com.google.guava</groupId> |
| 94 | <artifactId>guava</artifactId> |
| 95 | <version>14.0.1</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>com.fasterxml.jackson.core</groupId> |
| 99 | <artifactId>jackson-databind</artifactId> |
| 100 | <version>2.3.0-rc1</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.apache.velocity</groupId> |
| 104 | <artifactId>velocity</artifactId> |
| 105 | <version>1.7</version> |
| 106 | <exclusions> |
| 107 | <exclusion> |
| 108 | <groupId>javax.servlet</groupId> |
| 109 | <artifactId>servlet-api</artifactId> |
| 110 | </exclusion> |
| 111 | </exclusions> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>net.sf.opencsv</groupId> |
| 115 | <artifactId>opencsv</artifactId> |
| 116 | <version>2.3</version> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>junit</groupId> |
| 120 | <artifactId>junit</artifactId> |
| 121 | <version>4.11</version> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.mockito</groupId> |
| 126 | <artifactId>mockito-core</artifactId> |
| 127 | <version>1.9.5</version> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.springframework</groupId> |
| 131 | <artifactId>spring-mock</artifactId> |
| 132 | <version>2.0.8</version> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>com.mockrunner</groupId> |
| 136 | <artifactId>mockrunner</artifactId> |
| 137 | <version>0.3.1</version> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.openecomp.policy.common</groupId> |
| 141 | <artifactId>ECOMP-Logging</artifactId> |
| 142 | <version>${common-modules.version}</version> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>com.att.research.xacml</groupId> |
| 146 | <artifactId>xacml</artifactId> |
| 147 | <version>1.0.0</version> |
| 148 | </dependency> |
| 149 | </dependencies> |
| 150 | </project> |