Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ECOMP Policy Engine |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.openecomp.policy.engine</groupId> |
| 26 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | 3234eb0 | 2017-03-10 14:54:53 -0500 | [diff] [blame] | 27 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 28 | </parent> |
Pamela Dragosh | 3bcaf89 | 2017-02-23 06:44:23 -0500 | [diff] [blame] | 29 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 30 | <artifactId>PolicyEngineUtils</artifactId> |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>log4j</groupId> |
| 34 | <artifactId>log4j</artifactId> |
| 35 | <version>1.2.17</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.eclipse.persistence</groupId> |
| 39 | <artifactId>javax.persistence</artifactId> |
| 40 | <version>2.1.0</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.eclipse.persistence</groupId> |
| 44 | <artifactId>eclipselink</artifactId> |
| 45 | <version>2.6.0</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>com.h2database</groupId> |
| 49 | <artifactId>h2</artifactId> |
| 50 | <version>[1.4.186,)</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>mysql</groupId> |
| 54 | <artifactId>mysql-connector-java</artifactId> |
| 55 | <version>5.1.30</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>com.fasterxml.jackson.core</groupId> |
| 59 | <artifactId>jackson-databind</artifactId> |
| 60 | <version>2.7.5</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>com.github.fge</groupId> |
| 64 | <artifactId>json-patch</artifactId> |
| 65 | <version>1.9</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>junit</groupId> |
| 69 | <artifactId>junit</artifactId> |
| 70 | <version>4.11</version> |
| 71 | </dependency> |
| 72 | <!-- https://mvnrepository.com/artifact/com.att.cadi/cadi-aaf --> |
| 73 | <dependency> |
| 74 | <groupId>com.att.cadi</groupId> |
| 75 | <artifactId>cadi-aaf</artifactId> |
| 76 | <version>1.3.0</version> |
| 77 | <exclusions> |
| 78 | <exclusion> |
| 79 | <groupId>com.att.aft</groupId> |
| 80 | <artifactId>dme2</artifactId> |
| 81 | </exclusion> |
| 82 | </exclusions> |
| 83 | </dependency> |
| 84 | </dependencies> |
| 85 | </project> |