Bump versions in policy/engine master
[policy/engine.git] / PolicyEngineUtils / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017-2018 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         <!--
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>
99         </dependency>
100         <dependency>
101             <groupId>com.google.code.gson</groupId>
102             <artifactId>gson</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
106             <artifactId>dmaapClient</artifactId>
107             <exclusions>
108                 <exclusion>
109                     <groupId>org.slf4j</groupId>
110                     <artifactId>slf4j-log4j12</artifactId>
111                 </exclusion>
112             </exclusions>
113         </dependency>
114         <dependency>
115             <groupId>com.h2database</groupId>
116             <artifactId>h2</artifactId>
117             <scope>test</scope>
118         </dependency>
119     </dependencies>
120 </project>