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 | --> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.openecomp.policy.engine</groupId> |
| 25 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | 3234eb0 | 2017-03-10 14:54:53 -0500 | [diff] [blame] | 26 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 27 | </parent> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 28 | <artifactId>PolicyEngineUtils</artifactId> |
| 29 | <dependencies> |
| 30 | <dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 31 | <groupId>org.openecomp.policy.common</groupId> |
| 32 | <artifactId>integrity-monitor</artifactId> |
| 33 | <version>${common-modules.version}</version> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.openecomp.policy.common</groupId> |
| 37 | <artifactId>integrity-audit</artifactId> |
| 38 | <version>${common-modules.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.openecomp.policy.common</groupId> |
| 42 | <artifactId>ECOMP-Logging</artifactId> |
| 43 | <version>${common-modules.version}</version> |
| 44 | <exclusions> |
| 45 | <exclusion> |
| 46 | <groupId>org.powermock</groupId> |
| 47 | <artifactId>powermock-module-junit4</artifactId> |
| 48 | </exclusion> |
| 49 | <exclusion> |
| 50 | <groupId>org.powermock</groupId> |
| 51 | <artifactId>powermock-core</artifactId> |
| 52 | </exclusion> |
| 53 | </exclusions> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.eclipse.persistence</groupId> |
| 57 | <artifactId>javax.persistence</artifactId> |
| 58 | <version>2.1.0</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.eclipse.persistence</groupId> |
| 62 | <artifactId>eclipselink</artifactId> |
| 63 | <version>2.6.0</version> |
| 64 | </dependency> |
| 65 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 66 | <groupId>mysql</groupId> |
| 67 | <artifactId>mysql-connector-java</artifactId> |
| 68 | <version>5.1.30</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>com.fasterxml.jackson.core</groupId> |
| 72 | <artifactId>jackson-databind</artifactId> |
| 73 | <version>2.7.5</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>com.github.fge</groupId> |
| 77 | <artifactId>json-patch</artifactId> |
| 78 | <version>1.9</version> |
| 79 | </dependency> |
| 80 | <dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 81 | <groupId>org.apache.maven</groupId> |
| 82 | <artifactId>maven-model</artifactId> |
| 83 | <version>3.3.9</version> |
| 84 | </dependency> |
| 85 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 86 | <groupId>junit</groupId> |
| 87 | <artifactId>junit</artifactId> |
| 88 | <version>4.11</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 89 | <scope>test</scope> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 90 | </dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 91 | <dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 92 | <groupId>org.mariadb.jdbc</groupId> |
| 93 | <artifactId>mariadb-java-client</artifactId> |
| 94 | <version>1.2.3</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.drools</groupId> |
| 98 | <artifactId>drools-verifier</artifactId> |
| 99 | <version>6.3.0.Final</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>com.att.cadi</groupId> |
| 103 | <artifactId>cadi-aaf</artifactId> |
| 104 | <version>1.3.0</version> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>com.att.aft</groupId> |
| 108 | <artifactId>dme2</artifactId> |
| 109 | <version>3.1.200</version> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>com.att.nsa</groupId> |
| 113 | <artifactId>cambriaClient</artifactId> |
| 114 | <version>0.0.1</version> |
| 115 | <exclusions> |
| 116 | <exclusion> |
| 117 | <groupId>org.slf4j</groupId> |
| 118 | <artifactId>slf4j-log4j12</artifactId> |
| 119 | </exclusion> |
| 120 | </exclusions> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>com.att.nsa</groupId> |
| 124 | <artifactId>dmaapClient</artifactId> |
| 125 | <version>0.2.12</version> |
| 126 | <exclusions> |
| 127 | <exclusion> |
| 128 | <groupId>org.slf4j</groupId> |
| 129 | <artifactId>slf4j-log4j12</artifactId> |
| 130 | </exclusion> |
| 131 | </exclusions> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 132 | </dependency> |
| 133 | </dependencies> |
| 134 | </project> |