Upgrade to drools 7.28.0.Final
[policy/engine.git] / PolicyEngineUtils / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017-2019 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 <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">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.policy.engine</groupId>
26         <artifactId>PolicyEngineSuite</artifactId>
27         <version>1.6.0-SNAPSHOT</version>
28     </parent>
29     <artifactId>PolicyEngineUtils</artifactId>
30     <dependencies>
31         <dependency>
32             <groupId>org.onap.policy.common</groupId>
33             <artifactId>integrity-monitor</artifactId>
34             <version>${version.policy.common}</version>
35         </dependency>
36         <dependency>
37             <groupId>org.onap.policy.common</groupId>
38             <artifactId>integrity-audit</artifactId>
39             <version>${version.policy.common}</version>
40         </dependency>
41         <dependency>
42             <groupId>org.onap.policy.common</groupId>
43             <artifactId>ONAP-Logging</artifactId>
44             <version>${version.policy.common}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.eclipse.persistence</groupId>
48             <artifactId>javax.persistence</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.eclipse.persistence</groupId>
52             <artifactId>eclipselink</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.mariadb.jdbc</groupId>
56             <artifactId>mariadb-java-client</artifactId>
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>
68         <dependency>
69             <groupId>org.drools</groupId>
70             <artifactId>drools-verifier-drl</artifactId>
71             <exclusions>
72                 <exclusion>
73                     <groupId>com.lowagie</groupId>
74                     <artifactId>itext</artifactId>
75                 </exclusion>
76             </exclusions>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.aaf.authz</groupId>
80             <artifactId>aaf-cadi-aaf</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.google.code.gson</groupId>
84             <artifactId>gson</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
88             <artifactId>dmaapClient</artifactId>
89             <exclusions>
90                 <exclusion>
91                     <groupId>org.slf4j</groupId>
92                     <artifactId>slf4j-log4j12</artifactId>
93                 </exclusion>
94             </exclusions>
95         </dependency>
96         <dependency>
97             <groupId>com.h2database</groupId>
98             <artifactId>h2</artifactId>
99             <scope>test</scope>
100         </dependency>
101     </dependencies>
102 </project>