blob: 8cecd3620e9c34ad656d72a6cf59583fb6e20c73 [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Guo Ruijing6abeb292017-07-28 08:23:01 +00004 ONAP Policy Engine - Drools PDP
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05005 ================================================================================
Jorge Hernandez19257102018-02-08 13:35:44 -06006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05007 ================================================================================
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
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050026 <artifactId>policy-core</artifactId>
27 <parent>
Guo Ruijing6abeb292017-07-28 08:23:01 +000028 <groupId>org.onap.policy.drools-pdp</groupId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050029 <artifactId>drools-pdp</artifactId>
Jessica Wagantall9de8f792017-11-18 18:47:57 -080030 <version>1.2.0-SNAPSHOT</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050031 </parent>
32
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050033 <dependencies>
Pamela Dragoshe0d71bb2018-02-22 11:58:47 -050034 <!--
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
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050051 <dependency>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050052 <groupId>org.kie</groupId>
53 <artifactId>kie-api</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050054 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050055 </dependency>
56 <dependency>
57 <groupId>org.kie</groupId>
58 <artifactId>kie-ci</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050059 <version>6.5.0.Final</version>
Pamela Dragoshe0d71bb2018-02-22 11:58:47 -050060 <!--
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>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050076 </dependency>
77 <dependency>
78 <groupId>org.drools</groupId>
79 <artifactId>drools-core</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050080 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050081 </dependency>
82 <dependency>
83 <groupId>org.drools</groupId>
84 <artifactId>drools-persistence-jpa</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050085 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050086 </dependency>
87 <dependency>
Guo Ruijing6abeb292017-07-28 08:23:01 +000088 <groupId>org.onap.policy.drools-pdp</groupId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050089 <artifactId>policy-utils</artifactId>
Pamela Dragosh998f0b32017-03-10 14:31:17 -050090 <version>${project.version}</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050091 </dependency>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050092 <dependency>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050093 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050095 <scope>test</scope>
96 </dependency>
Ralph Straubsf5de85e2017-09-18 03:37:28 -050097 </dependencies>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050098</project>