Merge "disable problematic private keystore"
[policy/drools-pdp.git] / policy-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine - Drools PDP
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24   <modelVersion>4.0.0</modelVersion>
25
26   <artifactId>policy-core</artifactId>
27   <parent>
28     <groupId>org.onap.policy.drools-pdp</groupId>
29     <artifactId>drools-pdp</artifactId>
30     <version>1.2.0-SNAPSHOT</version>
31   </parent>
32
33   <dependencies>
34     <!--
35     Issue: 1 of 2
36     These 2 dependencies are trying to upgrade security fixes
37     identified. If they are removed or manipulated then please
38     fix the 2nd change as noted below. 
39     -->
40     <dependency>
41         <groupId>org.codehaus.plexus</groupId>
42         <artifactId>plexus-utils</artifactId>
43         <version>3.0.24</version>
44     </dependency>
45     <dependency>
46         <groupId>com.thoughtworks.xstream</groupId>
47         <artifactId>xstream</artifactId>
48         <version>1.4.10</version>
49     </dependency>
50
51     <dependency>
52       <groupId>org.kie</groupId>
53       <artifactId>kie-api</artifactId>
54       <version>6.5.0.Final</version>
55     </dependency>
56     <dependency>
57       <groupId>org.kie</groupId>
58       <artifactId>kie-ci</artifactId>
59       <version>6.5.0.Final</version>
60       <!--
61       Issue: 2 of 2
62       Excluding these 2 dependencies in order to force upgrade security fixes
63       identified. As declared above. Any changes here should be reflected above
64       and vice versa.
65       -->
66       <exclusions>
67         <exclusion>
68             <groupId>org.codehaus.plexus</groupId>
69             <artifactId>plexus-utils</artifactId>
70         </exclusion>
71         <exclusion>
72             <groupId>com.thoughtworks.xstream</groupId>
73             <artifactId>xstream</artifactId>
74         </exclusion>
75       </exclusions>
76     </dependency>
77     <dependency>
78       <groupId>org.drools</groupId>
79       <artifactId>drools-core</artifactId>
80       <version>6.5.0.Final</version>
81     </dependency>
82     <dependency>
83       <groupId>org.drools</groupId>
84       <artifactId>drools-persistence-jpa</artifactId>
85       <version>6.5.0.Final</version>
86     </dependency>
87     <dependency>
88        <groupId>org.onap.policy.drools-pdp</groupId>
89        <artifactId>policy-utils</artifactId>
90        <version>${project.version}</version>  
91      </dependency>
92     <dependency>
93       <groupId>junit</groupId>
94       <artifactId>junit</artifactId>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.mockito</groupId>
99       <artifactId>mockito-core</artifactId>
100       <version>2.13.0</version>
101       <scope>test</scope>
102     </dependency>
103   </dependencies>
104 </project>