gitgabrio commented on issue #1916:
URL: 
https://github.com/apache/incubator-kie-issues/issues/1916#issuecomment-2782452430

   process examples shows following issue, namely:
   
   Cannot instantiate com.github.javaparser.ast.expr.PatternExpr
   
   required by (ANTLR generated) 
org.drools.mvel.parser.GeneratedMvelParser#PatternExpression()
   
       public final PatternExpr PatternExpression() throws ParseException {
           ModifierHolder modifier = this.Modifiers();
           ReferenceType type = this.ReferenceType(modifier.annotations);
           SimpleName name = this.SimpleName();
           return new PatternExpr(this.range(type, this.token()), 
modifier.modifiers, type, name);
       }
   
   Point is:
   inside drools/drools-mvel-parser, there is a dependency on
   
   com.github.javaparser:javaparser-core:jar:3.25.8
   
   on which PatternExpr IS NOT abstract
   
   public class PatternExpr 
   
   but, inside the examples, the version is:
   
   com.github.javaparser:javaparser-core:jar:3.26.1
   
   in which PatternExpr IS abstract
   
   public abstract class PatternExpr
   
   This would be fixed by This issue required 
https://github.com/apache/incubator-kie-issues/issues/1915, but then lot of 
other issues appear
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to