Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 3 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 4 | ================================================================================ |
jhh | fdfd5a0 | 2019-10-31 13:52:31 -0500 | [diff] [blame^] | 5 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 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 | --> |
Jim Hahn | 2debf01 | 2018-11-26 10:09:00 -0500 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | 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"> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.engine</groupId> |
| 26 | <artifactId>PolicyEngineSuite</artifactId> |
Jim Hahn | 1c5d6cd | 2019-09-17 12:14:50 -0400 | [diff] [blame] | 27 | <version>1.6.0-SNAPSHOT</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 28 | </parent> |
| 29 | <artifactId>PolicyEngineUtils</artifactId> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.onap.policy.common</groupId> |
| 33 | <artifactId>integrity-monitor</artifactId> |
ramverma | d7630c4 | 2018-10-25 17:19:16 +0100 | [diff] [blame] | 34 | <version>${version.policy.common}</version> |
Tej, Tarun | 98ab708 | 2017-09-19 23:14:33 -0400 | [diff] [blame] | 35 | </dependency> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 36 | <dependency> |
| 37 | <groupId>org.onap.policy.common</groupId> |
| 38 | <artifactId>integrity-audit</artifactId> |
ramverma | d7630c4 | 2018-10-25 17:19:16 +0100 | [diff] [blame] | 39 | <version>${version.policy.common}</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.common</groupId> |
| 43 | <artifactId>ONAP-Logging</artifactId> |
ramverma | d7630c4 | 2018-10-25 17:19:16 +0100 | [diff] [blame] | 44 | <version>${version.policy.common}</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.eclipse.persistence</groupId> |
| 48 | <artifactId>javax.persistence</artifactId> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.eclipse.persistence</groupId> |
| 52 | <artifactId>eclipselink</artifactId> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.mariadb.jdbc</groupId> |
| 56 | <artifactId>mariadb-java-client</artifactId> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>com.github.fge</groupId> |
| 60 | <artifactId>json-patch</artifactId> |
| 61 | <version>1.9</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.maven</groupId> |
| 65 | <artifactId>maven-model</artifactId> |
| 66 | <version>3.5.3</version> |
| 67 | </dependency> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 68 | <dependency> |
| 69 | <groupId>org.drools</groupId> |
jhh | fdfd5a0 | 2019-10-31 13:52:31 -0500 | [diff] [blame^] | 70 | <artifactId>drools-verifier-drl</artifactId> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 71 | <exclusions> |
| 72 | <exclusion> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 73 | <groupId>com.lowagie</groupId> |
| 74 | <artifactId>itext</artifactId> |
| 75 | </exclusion> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 76 | </exclusions> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.onap.aaf.authz</groupId> |
| 80 | <artifactId>aaf-cadi-aaf</artifactId> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>com.google.code.gson</groupId> |
| 84 | <artifactId>gson</artifactId> |
| 85 | </dependency> |
| 86 | <dependency> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 87 | <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> |
| 88 | <artifactId>dmaapClient</artifactId> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 89 | <exclusions> |
| 90 | <exclusion> |
| 91 | <groupId>org.slf4j</groupId> |
| 92 | <artifactId>slf4j-log4j12</artifactId> |
| 93 | </exclusion> |
| 94 | </exclusions> |
| 95 | </dependency> |
Jim Hahn | 2debf01 | 2018-11-26 10:09:00 -0500 | [diff] [blame] | 96 | <dependency> |
| 97 | <groupId>com.h2database</groupId> |
| 98 | <artifactId>h2</artifactId> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 101 | </dependencies> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 102 | </project> |