blob: fae9e1c029ae04a4cb2e93bd50a42184d6756922 [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijing073cc182017-07-31 08:47:35 +00003 ONAP Policy Engine
Pamela Dragosh91d04c62017-02-14 19:41:00 -05004 ================================================================================
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -05005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Pamela Dragosh91d04c62017-02-14 19:41:00 -05006 ================================================================================
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 -->
liamfallon4ddca8b2018-10-31 17:17:01 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onap.policy.engine</groupId>
24 <artifactId>PolicyEngineSuite</artifactId>
Pamela Dragoshb874f122019-04-16 10:18:43 -040025 <version>1.3.7-SNAPSHOT</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040026 </parent>
27 <artifactId>PolicyEngineUtils</artifactId>
28 <dependencies>
29 <dependency>
30 <groupId>org.onap.policy.common</groupId>
31 <artifactId>integrity-monitor</artifactId>
ramvermad7630c42018-10-25 17:19:16 +010032 <version>${version.policy.common}</version>
Tej, Tarun98ab7082017-09-19 23:14:33 -040033 </dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040034 <dependency>
35 <groupId>org.onap.policy.common</groupId>
36 <artifactId>integrity-audit</artifactId>
ramvermad7630c42018-10-25 17:19:16 +010037 <version>${version.policy.common}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040038 </dependency>
39 <dependency>
40 <groupId>org.onap.policy.common</groupId>
41 <artifactId>ONAP-Logging</artifactId>
ramvermad7630c42018-10-25 17:19:16 +010042 <version>${version.policy.common}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040043 </dependency>
44 <dependency>
45 <groupId>org.eclipse.persistence</groupId>
46 <artifactId>javax.persistence</artifactId>
47 <version>2.1.0</version>
48 </dependency>
49 <dependency>
50 <groupId>org.eclipse.persistence</groupId>
51 <artifactId>eclipselink</artifactId>
52 <version>2.6.0</version>
53 </dependency>
54 <dependency>
55 <groupId>org.mariadb.jdbc</groupId>
56 <artifactId>mariadb-java-client</artifactId>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040057 </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>
68 <!--
69 CLM security fix - force use of xstream
70 Remove this if a new version of drools-verifier is upgraded
71 that upgrades to xstream.
72 -->
73 <dependency>
74 <groupId>com.thoughtworks.xstream</groupId>
75 <artifactId>xstream</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.drools</groupId>
79 <artifactId>drools-verifier</artifactId>
80 <version>6.5.0.Final</version>
81 <exclusions>
82 <exclusion>
83 <groupId>com.google.guava</groupId>
84 <artifactId>guava</artifactId>
85 </exclusion>
86 <exclusion>
87 <groupId>com.lowagie</groupId>
88 <artifactId>itext</artifactId>
89 </exclusion>
90 <exclusion>
91 <groupId>com.thoughtworks.xstream</groupId>
92 <artifactId>xstream</artifactId>
93 </exclusion>
94 </exclusions>
95 </dependency>
96 <dependency>
97 <groupId>org.onap.aaf.authz</groupId>
98 <artifactId>aaf-cadi-aaf</artifactId>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040099 </dependency>
100 <dependency>
101 <groupId>com.google.code.gson</groupId>
102 <artifactId>gson</artifactId>
103 </dependency>
104 <dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400105 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
106 <artifactId>dmaapClient</artifactId>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400107 <exclusions>
108 <exclusion>
109 <groupId>org.slf4j</groupId>
110 <artifactId>slf4j-log4j12</artifactId>
111 </exclusion>
112 </exclusions>
113 </dependency>
114 </dependencies>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500115</project>