Clean up pom.xml and fix CLM
[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" 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.onap.policy.engine</groupId>
25                 <artifactId>PolicyEngineSuite</artifactId>
26                 <version>1.2.0-SNAPSHOT</version>
27         </parent>
28         <artifactId>PolicyEngineUtils</artifactId>
29         <dependencies>
30                 <dependency>
31                         <groupId>org.onap.policy.common</groupId>
32                         <artifactId>integrity-monitor</artifactId>
33                         <version>${project.version}</version>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.onap.policy.common</groupId>
37                         <artifactId>integrity-audit</artifactId>
38                         <version>${project.version}</version>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.onap.policy.common</groupId>
42                         <artifactId>ONAP-Logging</artifactId>
43                         <version>${project.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>
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>
66                         <groupId>org.mariadb.jdbc</groupId>
67                         <artifactId>mariadb-java-client</artifactId>
68                         <version>2.1.1</version>
69                 </dependency>
70                 <dependency>
71                         <groupId>com.fasterxml.jackson.core</groupId>
72                         <artifactId>jackson-databind</artifactId>
73                         <version>${jackson.version}</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>
81                         <groupId>org.apache.maven</groupId>
82                         <artifactId>maven-model</artifactId>
83                         <version>3.3.9</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>junit</groupId>
87                         <artifactId>junit</artifactId>
88                         <version>4.11</version>
89                         <scope>test</scope>
90                 </dependency>
91                 <!--
92                 CLM security fix - force use of xstream
93                 Remove this if a new version of drools-verifier is upgraded
94                 that upgrades to xstream.
95                  -->
96                 <dependency>
97                     <groupId>com.thoughtworks.xstream</groupId>
98                     <artifactId>xstream</artifactId>
99                     <version>1.4.10</version>
100                 </dependency>
101                 <dependency>
102                         <groupId>org.drools</groupId>
103                         <artifactId>drools-verifier</artifactId>
104                         <version>6.5.0.Final</version>
105                         <exclusions>
106                                 <exclusion>
107                                         <groupId>com.google.guava</groupId>
108                                         <artifactId>guava</artifactId>
109                                 </exclusion>
110                                 <exclusion>
111                                         <groupId>com.lowagie</groupId>
112                                 <artifactId>itext</artifactId>
113                                 </exclusion>
114                                 <exclusion>
115                                     <groupId>com.thoughtworks.xstream</groupId>
116                                     <artifactId>xstream</artifactId>
117                                 </exclusion>
118                         </exclusions>
119                 </dependency>
120                 <dependency>
121                         <groupId>com.att.cadi</groupId>
122                         <artifactId>cadi-aaf</artifactId>
123                         <version>1.3.0</version>
124                 </dependency>
125                 <dependency>
126                     <groupId>com.google.code.gson</groupId>
127             <artifactId>gson</artifactId>
128             <version>2.8.1</version>
129         </dependency>
130                 <dependency>
131                         <groupId>com.att.aft</groupId>
132                         <artifactId>dme2</artifactId>
133                         <version>3.1.200</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
137                         <artifactId>dmaapClient</artifactId>
138                         <version>${dmaap.version}</version>
139                         <exclusions>
140                                 <exclusion>
141                                         <groupId>org.slf4j</groupId>
142                                         <artifactId>slf4j-log4j12</artifactId>
143                                 </exclusion>
144                         </exclusions>
145                 </dependency>
146         </dependencies>
147 </project>