Upgrade drools libs from 7.x to 8.x 38/133038/1
authorjhh <jorge.hernandez-herrero@att.com>
Thu, 26 Jan 2023 16:07:32 +0000 (10:07 -0600)
committerjhh <jorge.hernandez-herrero@att.com>
Thu, 26 Jan 2023 16:07:32 +0000 (10:07 -0600)
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Issue-ID: POLICY-4498
Change-Id: Ifb0e19107522ac0248f308a1fb804c0c98764e1b

policy-core/pom.xml
policy-core/src/main/java/org/onap/policy/drools/util/KieUtils.java

index 9462cd6..3e76199 100644 (file)
@@ -3,7 +3,7 @@
   ============LICENSE_START=======================================================
   ONAP
   ================================================================================
-  Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
+  Copyright (C) 2017-2021, 2023 AT&T Intellectual Property. All rights reserved.
   Modifications Copyright (C) 2019 Bell Canada.
   Modifications Copyright (C) 2020,2022 Nordix Foundation.
   ================================================================================
             </exclusions>
         </dependency>
 
+        <dependency>
+            <groupId>org.drools</groupId>
+            <artifactId>drools-engine</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.drools</groupId>
             <artifactId>drools-core</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>org.drools</groupId>
+            <artifactId>drools-xml-support</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.drools</groupId>
             <artifactId>drools-persistence-jpa</artifactId>
index 043e2b1..099ce3a 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP
  * ================================================================================
- * Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2018-2021, 2023 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@ import lombok.NonNull;
 import org.apache.commons.io.IOUtils;
 import org.drools.compiler.kie.builder.impl.InternalKieModule;
 import org.drools.compiler.kproject.models.KieModuleModelImpl;
-import org.drools.core.impl.KnowledgeBaseImpl;
+import org.drools.kiesession.rulebase.SessionsAwareKnowledgeBase;
 import org.kie.api.KieBase;
 import org.kie.api.KieServices;
 import org.kie.api.builder.KieBuilder;
@@ -242,7 +242,7 @@ public final class KieUtils {
         if (!stillNeeded.isEmpty()) {
             // there are still packages we need to add --
             // this code makes use of an internal class and method
-            ((KnowledgeBaseImpl) kieBase).addPackages(stillNeeded);
+            ((SessionsAwareKnowledgeBase) kieBase).addPackages(stillNeeded);
         }
     }
 }