Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kie-issues#270: DMN Runner execution identifies wrongly missing requirements #5461

Merged
merged 1 commit into from
Sep 8, 2023

Conversation

jomarko
Copy link
Contributor

@jomarko jomarko commented Aug 14, 2023

Closes: https://github.com/kiegroup/kie-issues/issues/270

The problem was not in the DMN Runner ui component but in the engine that executes the validation. The mechanism for storing messages includes filtering of messages. however this filtering inappropriately assumed messages bellow like equal:

- Reqiured dependency 'A' not found on node 'N'
- Required dependency 'B' not found on ndoe 'N'

```
    @Override
    public DMNMessage addMessage(DMNMessage newMessage) {
        for( DMNMessage existingMessage : messages ) {
            if( isDuplicate( existingMessage, newMessage ) ) {
                return existingMessage;
            }
        }
        this.messages.add( newMessage );
        return newMessage;
    }
```

`isDuplicate` didn't take into account all needed attributes of the `message`

We decided to add option to turn off this filtering of messages on backround.
As part of this PR we turn it of only for `DMNResultImpl`. We keep it unchanged on other places.

Thank you for submitting this pull request

NOTE!: Double check the target branch for this PR.
The default is main so it will target Drools 8 / Kogito.
If this PR is not strictly related to drools and kogito project in drools.git, it should probably target 7.xas a branch

Ports If a forward-port or a backport is needed, paste the forward port PR here

link

JIRA: (please edit the JIRA link if it exists)

link

referenced Pull Requests: (please edit the URLs of referenced pullrequests if they exist)

  • paste the link(s) from GitHub here
  • link 2
  • link 3 etc.
How to replicate CI configuration locally?

Build Chain tool does "simple" maven build(s), the builds are just Maven commands, but because the repositories relates and depends on each other and any change in API or class method could affect several of those repositories there is a need to use build-chain tool to handle cross repository builds and be sure that we always use latest version of the code for each repository.

build-chain tool is a build tool which can be used on command line locally or in Github Actions workflow(s), in case you need to change multiple repositories and send multiple dependent pull requests related with a change you can easily reproduce the same build by executing it on Github hosted environment or locally in your development environment. See local execution details to get more information about it.

How to retest this PR or trigger a specific build:
  • for pull request checks
    Please add comment: Jenkins retest this

  • for a specific pull request check
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] tests

  • for a full downstream build

    • for jenkins job: please add comment: Jenkins run fdb
    • for github actions job: add the label run_fdb
  • a compile downstream build please add comment: Jenkins run cdb

  • a full production downstream build please add comment: Jenkins execute product fdb

  • an upstream build please add comment: Jenkins run upstream

  • for quarkus branch checks
    Run checks against Quarkus current used branch
    Please add comment: Jenkins run quarkus-branch

  • for a quarkus branch specific check
    Run checks against Quarkus current used branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] quarkus-branch

  • for quarkus main checks
    Run checks against Quarkus main branch
    Please add comment: Jenkins run quarkus-main

  • for a specific quarkus main check
    Run checks against Quarkus main branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] quarkus-main

  • for quarkus lts checks
    Run checks against Quarkus lts branch
    Please add comment: Jenkins run quarkus-lts

  • for a specific quarkus lts check
    Run checks against Quarkus lts branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] quarkus-lts

  • for native checks
    Run native checks
    Please add comment: Jenkins run native

  • for a specific native check
    Run native checks
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] native

  • for native lts checks
    Run native checks against quarkus lts branch
    Please add comment: Jenkins run native-lts

  • for a specific native lts check
    Run native checks against quarkus lts branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] native-lts

How to backport a pull request to a different branch?

In order to automatically create a backporting pull request please add one or more labels having the following format backport-<branch-name>, where <branch-name> is the name of the branch where the pull request must be backported to (e.g., backport-7.67.x to backport the original PR to the 7.67.x branch).

NOTE: backporting is an action aiming to move a change (usually a commit) from a branch (usually the main one) to another one, which is generally referring to a still maintained release branch. Keeping it simple: it is about to move a specific change or a set of them from one branch to another.

Once the original pull request is successfully merged, the automated action will create one backporting pull request per each label (with the previous format) that has been added.

If something goes wrong, the author will be notified and at this point a manual backporting is needed.

NOTE: this automated backporting is triggered whenever a pull request on main branch is labeled or closed, but both conditions must be satisfied to get the new PR created.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 14, 2023

(tests) - kogito-runtimes job #1605 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1605/display/redirect

Test results:

  • PASSED: 3336
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-14T14:53:25.468Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.036 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.341 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.046 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.061 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.791 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.278 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.097 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 3.796 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.825 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.311 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.790 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.119 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.739 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.018 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.129 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.598 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.287 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.139 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.279 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 53.531 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 3.958 s]
[2023-08-14T14:53:25.468Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:12 min]
[2023-08-14T14:53:25.468Z] [INFO] ------------------------------------------------------------------------
[2023-08-14T14:53:25.468Z] [INFO] BUILD FAILURE
[2023-08-14T14:53:25.468Z] [INFO] ------------------------------------------------------------------------
[2023-08-14T14:53:25.468Z] [INFO] Total time: 43:20 min
[2023-08-14T14:53:25.468Z] [INFO] Finished at: 2023-08-14T10:53:25-04:00
[2023-08-14T14:53:25.468Z] [INFO] ------------------------------------------------------------------------
[2023-08-14T14:53:25.468Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-14T14:53:25.468Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T14:53:25.468Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T14:53:25.468Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T14:53:25.468Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T14:53:25.468Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T14:53:25.468Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T14:53:25.468Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T14:53:25.468Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T14:53:25.468Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T14:53:25.468Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T14:53:25.468Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T14:53:25.468Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T14:53:25.468Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T14:53:25.468Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T14:53:25.468Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T14:53:25.468Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T14:53:25.468Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T14:53:25.468Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T14:53:25.468Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T14:53:25.468Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T14:53:25.468Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T14:53:25.468Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T14:53:25.468Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T14:53:25.468Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T14:53:25.468Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T14:53:25.468Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T14:53:25.468Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T14:53:25.468Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T14:53:25.469Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T14:53:25.469Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T14:53:25.469Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T14:53:25.469Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T14:53:25.469Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T14:53:25.469Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T14:53:25.469Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T14:53:25.469Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T14:53:25.469Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T14:53:25.469Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T14:53:25.469Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T14:53:25.469Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T14:53:25.469Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T14:53:25.469Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-14T14:53:25.469Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-14T14:53:25.469Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-14T14:53:25.470Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-14T14:53:25.470Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-14T14:53:25.470Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-14T14:53:25.470Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-14T14:53:25.470Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T14:53:25.470Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T14:53:25.470Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T14:53:25.470Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T14:53:25.470Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T14:53:25.470Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T14:53:25.470Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T14:53:25.470Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T14:53:25.470Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T14:53:25.470Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T14:53:25.470Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T14:53:25.470Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T14:53:25.470Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T14:53:25.470Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T14:53:25.470Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T14:53:25.470Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T14:53:25.470Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T14:53:25.470Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T14:53:25.470Z] [ERROR]
[2023-08-14T14:53:25.470Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-14T14:53:25.470Z] [ERROR]
[2023-08-14T14:53:25.470Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-14T14:53:25.470Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-14T14:53:25.470Z] [ERROR]
[2023-08-14T14:53:25.470Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-14T14:53:25.470Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-14T14:53:25.724Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-14T14:53:25.724Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-14T14:53:25.724Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-14T14:53:25.724Z] [INFO] OK [Executed in 0.173726 ms]
[2023-08-14T14:53:25.724Z]
[2023-08-14T14:53:25.724Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-14T14:53:25.724Z] [INFO] OK [Executed in 6.944847 ms]
[2023-08-14T14:53:25.724Z]
[2023-08-14T14:53:25.724Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-14T14:53:25.724Z] [INFO] OK [Executed in 6.31226 ms]
[2023-08-14T14:53:25.724Z]
[2023-08-14T14:53:25.724Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config14057442830214011865tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-14T14:53:25.724Z] [INFO] NOT OK [Executed in 2601913.858103 ms]
[2023-08-14T14:53:25.724Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-14T14:53:25.724Z]
[2023-08-14T14:53:25.724Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-14T14:53:25.724Z]
[2023-08-14T14:53:25.724Z] # Uploading artifacts
[2023-08-14T14:53:25.724Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-14T14:53:25.724Z]
[2023-08-14T14:53:25.724Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-14T14:53:25.724Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config14057442830214011865tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-14T14:53:25.724Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-14T14:53:25.805Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-14T14:53:26.246Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-14T14:53:27.623Z] Recording test results
[2023-08-14T14:53:30.940Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-14T14:53:30.960Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-14T14:53:32.451Z] + rm -rf console.log
[Pipeline] sh
[2023-08-14T14:53:32.741Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1605/consoleText
[2023-08-14T14:53:32.741Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 14, 2023

(tests) - drools job #1639 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-Dfull -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/drools -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1639/display/redirect

Test results:

  • PASSED: 21658
  • FAILED: 36

Those are the test failures:

org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_DefinitionsInput Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_DefinitionsInput Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_ReaderInput Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_FileInput Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_FileInput Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_ReaderInput Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 14, 2023

(tests) - kogito-runtimes job #1607 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1607/display/redirect

Test results:

  • PASSED: 3336
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-14T19:41:35.625Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.032 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.384 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.041 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.074 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.735 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.283 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.091 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 4.267 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.879 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.366 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.732 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.120 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 9.072 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.023 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.131 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.753 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.270 s]
[2023-08-14T19:41:35.625Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.133 s]
[2023-08-14T19:41:35.626Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.307 s]
[2023-08-14T19:41:35.626Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 54.833 s]
[2023-08-14T19:41:35.626Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.508 s]
[2023-08-14T19:41:35.626Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:28 min]
[2023-08-14T19:41:35.626Z] [INFO] ------------------------------------------------------------------------
[2023-08-14T19:41:35.626Z] [INFO] BUILD FAILURE
[2023-08-14T19:41:35.626Z] [INFO] ------------------------------------------------------------------------
[2023-08-14T19:41:35.626Z] [INFO] Total time: 43:25 min
[2023-08-14T19:41:35.626Z] [INFO] Finished at: 2023-08-14T15:41:35-04:00
[2023-08-14T19:41:35.626Z] [INFO] ------------------------------------------------------------------------
[2023-08-14T19:41:35.626Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-14T19:41:35.626Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T19:41:35.626Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T19:41:35.626Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T19:41:35.626Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T19:41:35.626Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T19:41:35.626Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T19:41:35.626Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T19:41:35.626Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T19:41:35.626Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T19:41:35.626Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T19:41:35.626Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T19:41:35.626Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T19:41:35.626Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-14T19:41:35.626Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T19:41:35.626Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T19:41:35.626Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T19:41:35.626Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T19:41:35.627Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T19:41:35.627Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T19:41:35.627Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T19:41:35.627Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T19:41:35.627Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-14T19:41:35.627Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-14T19:41:35.627Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-14T19:41:35.627Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-14T19:41:35.627Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-14T19:41:35.627Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-14T19:41:35.627Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-14T19:41:35.627Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-14T19:41:35.627Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-14T19:41:35.627Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-14T19:41:35.627Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-14T19:41:35.627Z] [ERROR]
[2023-08-14T19:41:35.627Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-14T19:41:35.628Z] [ERROR]
[2023-08-14T19:41:35.628Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-14T19:41:35.628Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-14T19:41:35.628Z] [ERROR]
[2023-08-14T19:41:35.628Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-14T19:41:35.628Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-14T19:41:35.882Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-14T19:41:35.882Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-14T19:41:35.882Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-14T19:41:35.882Z] [INFO] OK [Executed in 0.181801 ms]
[2023-08-14T19:41:35.882Z]
[2023-08-14T19:41:35.882Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-14T19:41:35.882Z] [INFO] OK [Executed in 5.660876 ms]
[2023-08-14T19:41:35.882Z]
[2023-08-14T19:41:35.882Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-14T19:41:35.882Z] [INFO] OK [Executed in 5.259644 ms]
[2023-08-14T19:41:35.882Z]
[2023-08-14T19:41:35.882Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config18347731458967435945tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-14T19:41:35.882Z] [INFO] NOT OK [Executed in 2606168.656783 ms]
[2023-08-14T19:41:35.882Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-14T19:41:35.882Z]
[2023-08-14T19:41:35.882Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-14T19:41:35.882Z]
[2023-08-14T19:41:35.882Z] # Uploading artifacts
[2023-08-14T19:41:35.882Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-14T19:41:35.882Z]
[2023-08-14T19:41:35.882Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-14T19:41:35.882Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config18347731458967435945tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-14T19:41:35.882Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-14T19:41:36.005Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-14T19:41:36.574Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-14T19:41:36.973Z] Recording test results
[2023-08-14T19:41:40.193Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-14T19:41:40.211Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-14T19:41:41.767Z] + rm -rf console.log
[Pipeline] sh
[2023-08-14T19:41:42.070Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1607/consoleText
[2023-08-14T19:41:42.070Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 14, 2023

(tests) - drools job #1641 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-Dfull -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/drools -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1641/display/redirect

Test results:

  • PASSED: 21659
  • FAILED: 36

Those are the test failures:

org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_ReaderInput [Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_DefinitionsInput Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_DefinitionsInput Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_ReaderInput Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_FileInput Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_FileInput Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
org.kie.dmn.validation.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_ReaderInput Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 14, 2023

(tests) - kogito-apps job #1623 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-apps -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-apps/1623/display/redirect

Test results:

  • PASSED: 2774
  • FAILED: 1

Those are the test failures:

org.kie.kogito.jobs.service.messaging.kafka.stream.KafkaConfigurationTest.topicConfiguration java.lang.RuntimeException: io.quarkus.builder.BuildException: Build failure: Build failed due to errors
[error]: Build step io.quarkus.kafka.client.deployment.DevServicesKafkaProcessor#startKafkaDevService threw an exception: java.lang.RuntimeException: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at io.quarkus.kafka.client.deployment.DevServicesKafkaProcessor.startKafkaDevService(DevServicesKafkaProcessor.java:105)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at io.quarkus.deployment.ExtensionLoader$3.execute(ExtensionLoader.java:909)
at io.quarkus.builder.BuildContext.run(BuildContext.java:281)
at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)
at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2449)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1478)
at java.base/java.lang.Thread.run(Thread.java:829)
at org.jboss.threads.JBossThread.run(JBossThread.java:501)
Caused by: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:349)
at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:322)
at io.quarkus.kafka.client.deployment.DevServicesKafkaProcessor.lambda$startKafka$5(DevServicesKafkaProcessor.java:236)
at java.base/java.util.Optional.orElseGet(Optional.java:369)
at io.quarkus.kafka.client.deployment.DevServicesKafkaProcessor.startKafka(DevServicesKafkaProcessor.java:282)
at io.quarkus.kafka.client.deployment.DevServicesKafkaProcessor.startKafkaDevService(DevServicesKafkaProcessor.java:95)
... 11 more
Caused by: org.rnorth.ducttape.RetryCountExceededException: Retry limit hit with exception
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:88)
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:334)
... 16 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Could not create/start container
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:542)
at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:344)
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
... 17 more
Caused by: java.lang.IllegalStateException: Container exited with code 1
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:514)
... 19 more

@jomarko jomarko marked this pull request as ready for review August 15, 2023 04:43
@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 15, 2023

(tests) - serverless-workflow-examples job #865 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-examples -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.serverless-workflow-examples/865/display/redirect

Test results:

  • PASSED: 81
  • FAILED: 1

Those are the test failures:

org.kie.kogito.examples.OpenVinoRestIT.testOpenvino 1 expectation failed.
JSON path workflowdata.group doesn't match.
Expected: a string containing "flat-coated retriever"
Actual: <[]>

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 15, 2023

(tests) - kogito-runtimes job #1608 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1608/display/redirect

Test results:

  • PASSED: 3336
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-15T05:32:20.769Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.036 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.418 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.048 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.063 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 3.081 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.289 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.097 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 3.804 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.875 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.452 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.774 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.122 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.893 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.021 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.191 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.663 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.261 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.168 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.289 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 55.304 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.070 s]
[2023-08-15T05:32:20.769Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:20 min]
[2023-08-15T05:32:20.769Z] [INFO] ------------------------------------------------------------------------
[2023-08-15T05:32:20.769Z] [INFO] BUILD FAILURE
[2023-08-15T05:32:20.769Z] [INFO] ------------------------------------------------------------------------
[2023-08-15T05:32:20.769Z] [INFO] Total time: 43:47 min
[2023-08-15T05:32:20.769Z] [INFO] Finished at: 2023-08-15T01:32:19-04:00
[2023-08-15T05:32:20.769Z] [INFO] ------------------------------------------------------------------------
[2023-08-15T05:32:20.769Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-15T05:32:20.769Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T05:32:20.769Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T05:32:20.769Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T05:32:20.769Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T05:32:20.769Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T05:32:20.769Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T05:32:20.769Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T05:32:20.769Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T05:32:20.769Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T05:32:20.769Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T05:32:20.770Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T05:32:20.770Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T05:32:20.770Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T05:32:20.770Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T05:32:20.770Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T05:32:20.770Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T05:32:20.770Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T05:32:20.770Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T05:32:20.770Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T05:32:20.770Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T05:32:20.770Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T05:32:20.770Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T05:32:20.770Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T05:32:20.770Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T05:32:20.770Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T05:32:20.770Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T05:32:20.770Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-15T05:32:20.770Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-15T05:32:20.770Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-15T05:32:20.770Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-15T05:32:20.770Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-15T05:32:20.770Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T05:32:20.771Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T05:32:20.771Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T05:32:20.771Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T05:32:20.771Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T05:32:20.771Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T05:32:20.771Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T05:32:20.771Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T05:32:20.771Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T05:32:20.771Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T05:32:20.771Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T05:32:20.771Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T05:32:20.771Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-15T05:32:20.771Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-15T05:32:20.771Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-15T05:32:20.771Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-15T05:32:20.771Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-15T05:32:20.771Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T05:32:20.771Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T05:32:20.771Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T05:32:20.771Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T05:32:20.771Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T05:32:20.771Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T05:32:20.771Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T05:32:20.771Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T05:32:20.771Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T05:32:20.771Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T05:32:20.771Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T05:32:20.771Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T05:32:20.771Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T05:32:20.771Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T05:32:20.771Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T05:32:20.771Z] [ERROR]
[2023-08-15T05:32:20.771Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-15T05:32:20.771Z] [ERROR]
[2023-08-15T05:32:20.771Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-15T05:32:20.771Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-15T05:32:20.771Z] [ERROR]
[2023-08-15T05:32:20.771Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-15T05:32:20.771Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-15T05:32:20.771Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-15T05:32:20.771Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-15T05:32:20.771Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-15T05:32:20.771Z] [INFO] OK [Executed in 0.196719 ms]
[2023-08-15T05:32:20.771Z]
[2023-08-15T05:32:20.771Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-15T05:32:20.771Z] [INFO] OK [Executed in 8.896474 ms]
[2023-08-15T05:32:20.771Z]
[2023-08-15T05:32:20.771Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-15T05:32:20.771Z] [INFO] OK [Executed in 7.189352 ms]
[2023-08-15T05:32:20.771Z]
[2023-08-15T05:32:20.771Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config8770003564254588568tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-15T05:32:20.771Z] [INFO] NOT OK [Executed in 2628256.306397 ms]
[2023-08-15T05:32:20.771Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-15T05:32:20.771Z]
[2023-08-15T05:32:20.771Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-15T05:32:20.771Z]
[2023-08-15T05:32:20.771Z] # Uploading artifacts
[2023-08-15T05:32:20.771Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-15T05:32:20.771Z]
[2023-08-15T05:32:20.771Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-15T05:32:20.771Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config8770003564254588568tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-15T05:32:20.771Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-15T05:32:20.845Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-15T05:32:21.243Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-15T05:32:22.179Z] Recording test results
[2023-08-15T05:32:25.045Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-15T05:32:25.062Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-15T05:32:26.558Z] + rm -rf console.log
[Pipeline] sh
[2023-08-15T05:32:26.846Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1608/consoleText
[2023-08-15T05:32:26.846Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 15, 2023

(tests) - drools job #1642 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-Dfull -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/drools -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1642/display/redirect

Test results:

  • PASSED: 21684
  • FAILED: 11

Those are the test failures:

org.drools.mvel.integrationtests.ExecutionFlowControlTest.testRuleFlowGroupInActiveMode[KieBase type=CLOUD_IDENTITY] test timed out after 10000 milliseconds
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTest.testDecisionService20181008 expected:<[2]L> but was:<[1]L>
org.kie.dmn.validation.ValidatorDecisionServiceTest.testINPUTDATA_NOT_FOUND_FOR_DS_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decisionservice/DS1ofEach_missingInputData.dmn, line=0, column=0
text=DMN: Required dependency '_AB938312-7622-4B45-919F-D5F779B1810A' not found on node 'DecisionService-1' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decisionservice/DS1ofEach_missingInputData.dmn, line=0, column=0
text=DMN: Required dependency '_AB938312-7622-4B45-919F-D5F779B1810A' not found on node 'DecisionService-1' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionServiceTest.testDECISIONINPUT_NOT_FOUND_FOR_DS_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Validation of the DMN Model cannot be performed because of some runtime exception 'Compiled model is null!'. (DMN Validation stopped on failed validation for some DMN Model) ]] expected:<[REQ_NOT_FOUND]> but was:<[FAILED_VALIDATION]>
org.kie.dmn.validation.ValidatorDecisionServiceTest.testENCAPSULATED_NOT_FOUND_FOR_DS_ReaderInput [Message [id=0, level=ERROR, path=null, line=15, column=-1
text=DMN: Required dependency '_C6CA655F-356D-4A0D-B678-1F126E476BB5' not found on node 'DecisionService-1' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=15, column=-1
text=DMN: Required dependency '_C6CA655F-356D-4A0D-B678-1F126E476BB5' not found on node 'DecisionService-1' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionServiceTest.testDECISIONINPUT_NOT_FOUND_FOR_DS_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decisionservice/DS1ofEach_missingDecisionInput.dmn, line=16, column=-1
text=DMN: Required dependency '_C6272ABD-7364-4469-8DB6-324B578F056B' not found on node 'DecisionService-1' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decisionservice/DS1ofEach_missingDecisionInput.dmn, line=16, column=-1
text=DMN: Required dependency '_C6272ABD-7364-4469-8DB6-324B578F056B' not found on node 'DecisionService-1' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionServiceTest.testENCAPSULATED_NOT_FOUND_FOR_DS_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decisionservice/DS1ofEach_missingEncapsulated.dmn, line=15, column=-1
text=DMN: Required dependency '_C6CA655F-356D-4A0D-B678-1F126E476BB5' not found on node 'DecisionService-1' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decisionservice/DS1ofEach_missingEncapsulated.dmn, line=15, column=-1
text=DMN: Required dependency '_C6CA655F-356D-4A0D-B678-1F126E476BB5' not found on node 'DecisionService-1' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionServiceTest.testDECISIONINPUT_NOT_FOUND_FOR_DS_ReaderInput [Message [id=0, level=ERROR, path=null, line=16, column=-1
text=DMN: Required dependency '_C6272ABD-7364-4469-8DB6-324B578F056B' not found on node 'DecisionService-1' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=16, column=-1
text=DMN: Required dependency '_C6272ABD-7364-4469-8DB6-324B578F056B' not found on node 'DecisionService-1' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionServiceTest.testINPUTDATA_NOT_FOUND_FOR_DS_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Validation of the DMN Model cannot be performed because of some runtime exception 'Compiled model is null!'. (DMN Validation stopped on failed validation for some DMN Model) ]] expected:<[REQ_NOT_FOUND]> but was:<[FAILED_VALIDATION]>
org.kie.dmn.validation.ValidatorDecisionServiceTest.testINPUTDATA_NOT_FOUND_FOR_DS_ReaderInput [Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Required dependency '_AB938312-7622-4B45-919F-D5F779B1810A' not found on node 'DecisionService-1' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Required dependency '_AB938312-7622-4B45-919F-D5F779B1810A' not found on node 'DecisionService-1' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorTest.testDecisionService20181008
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'http://www.trisotech.com/definitions/_06945eb5-d665-41eb-a96a-3091b2e4e82f#_0b30a69e-76c9-433b-8e20-07bd6bef68a7' not found on node 'Model B Decision' (The referenced node was not found) ]]

@jomarko jomarko marked this pull request as draft August 15, 2023 06:00
@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 15, 2023

(tests) - kogito-runtimes job #1609 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1609/display/redirect

Test results:

  • PASSED: 3336
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-15T12:23:14.292Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.045 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.394 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.058 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.076 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.891 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.298 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.112 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 4.094 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.885 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.556 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.976 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.165 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.845 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.018 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.123 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.600 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.294 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.133 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.268 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 59.223 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.223 s]
[2023-08-15T12:23:14.292Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:33 min]
[2023-08-15T12:23:14.292Z] [INFO] ------------------------------------------------------------------------
[2023-08-15T12:23:14.292Z] [INFO] BUILD FAILURE
[2023-08-15T12:23:14.292Z] [INFO] ------------------------------------------------------------------------
[2023-08-15T12:23:14.292Z] [INFO] Total time: 45:20 min
[2023-08-15T12:23:14.292Z] [INFO] Finished at: 2023-08-15T08:23:13-04:00
[2023-08-15T12:23:14.292Z] [INFO] ------------------------------------------------------------------------
[2023-08-15T12:23:14.292Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-15T12:23:14.292Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T12:23:14.292Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T12:23:14.292Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T12:23:14.292Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T12:23:14.292Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T12:23:14.292Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T12:23:14.292Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T12:23:14.292Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T12:23:14.292Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T12:23:14.292Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T12:23:14.292Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T12:23:14.292Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T12:23:14.292Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T12:23:14.292Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T12:23:14.292Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T12:23:14.292Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-15T12:23:14.292Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-15T12:23:14.292Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T12:23:14.292Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T12:23:14.292Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T12:23:14.293Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T12:23:14.293Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T12:23:14.293Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T12:23:14.293Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T12:23:14.293Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T12:23:14.293Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T12:23:14.293Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T12:23:14.293Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T12:23:14.293Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T12:23:14.293Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T12:23:14.293Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-15T12:23:14.293Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-15T12:23:14.293Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-15T12:23:14.293Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-15T12:23:14.293Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-15T12:23:14.293Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T12:23:14.293Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T12:23:14.293Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T12:23:14.293Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T12:23:14.293Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T12:23:14.294Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T12:23:14.294Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T12:23:14.294Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T12:23:14.294Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T12:23:14.294Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T12:23:14.294Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T12:23:14.294Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T12:23:14.294Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T12:23:14.294Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-15T12:23:14.294Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-15T12:23:14.294Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-15T12:23:14.294Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-15T12:23:14.294Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-15T12:23:14.294Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-15T12:23:14.294Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-15T12:23:14.294Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-15T12:23:14.294Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-15T12:23:14.294Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-15T12:23:14.294Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-15T12:23:14.294Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-15T12:23:14.294Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-15T12:23:14.294Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-15T12:23:14.294Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-15T12:23:14.294Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-15T12:23:14.294Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-15T12:23:14.294Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-15T12:23:14.294Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-15T12:23:14.294Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-15T12:23:14.294Z] [ERROR]
[2023-08-15T12:23:14.294Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-15T12:23:14.294Z] [ERROR]
[2023-08-15T12:23:14.294Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-15T12:23:14.294Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-15T12:23:14.294Z] [ERROR]
[2023-08-15T12:23:14.294Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-15T12:23:14.294Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-15T12:23:14.549Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-15T12:23:14.549Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-15T12:23:14.549Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-15T12:23:14.549Z] [INFO] OK [Executed in 0.383028 ms]
[2023-08-15T12:23:14.549Z]
[2023-08-15T12:23:14.549Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-15T12:23:14.549Z] [INFO] OK [Executed in 7.782238 ms]
[2023-08-15T12:23:14.549Z]
[2023-08-15T12:23:14.549Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-15T12:23:14.549Z] [INFO] OK [Executed in 7.534383 ms]
[2023-08-15T12:23:14.549Z]
[2023-08-15T12:23:14.549Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config12237634240211497063tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-15T12:23:14.549Z] [INFO] NOT OK [Executed in 2721676.010111 ms]
[2023-08-15T12:23:14.549Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-15T12:23:14.549Z]
[2023-08-15T12:23:14.549Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-15T12:23:14.549Z]
[2023-08-15T12:23:14.549Z] # Uploading artifacts
[2023-08-15T12:23:14.549Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-15T12:23:14.549Z]
[2023-08-15T12:23:14.549Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-15T12:23:14.549Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config12237634240211497063tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-15T12:23:14.549Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-15T12:23:14.625Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-15T12:23:15.033Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-15T12:23:15.305Z] Recording test results
[2023-08-15T12:23:18.568Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-15T12:23:18.588Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-15T12:23:20.158Z] + rm -rf console.log
[Pipeline] sh
[2023-08-15T12:23:20.456Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1609/consoleText
[2023-08-15T12:23:20.456Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 15, 2023

(tests) - kogito-apps job #1625 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-apps -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-apps/1625/display/redirect

Test results:

  • PASSED: 2763
  • FAILED: 1

Those are the test failures:

Build projects / org.kie.kogito.it.jobs.CallbackStateTimeoutsIT.callbackStateTimeoutsExceeded java.lang.IllegalStateException: Unable to determine the status of the running process. See the above logs for details

@jomarko jomarko requested a review from tarilabs August 15, 2023 15:02
@jomarko jomarko marked this pull request as ready for review August 15, 2023 15:02
@jomarko jomarko requested a review from baldimir August 16, 2023 03:27
Copy link
Member

@tarilabs tarilabs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies for the late reply as I was on holiday 🏖️

The mechanism for storing messages contained a bug.
isDuplicate didn't take into account all needed attributes of the message

That is not a bug, indeed it was a deliberate choice.

The rationale was that especially during model building, as you are still heavily working on the model, you don't want to get "bombarded" with all the possible errors, but for each ~category, get the first error message which is relevant.
Indeed, resolving a given error might uncover "additional errors" in the ~category, but this was deliberate, and because the editor does not have this "filtering" capability, it was implemented straight into the engine.

So I leave it up to you and especially @baldimir if you want to revise this decision.

Separately, personally I don't like relying on string message manipulation as this PR does, for counter-example see for instance the DT validation we provided an internal API for testing and message building (eg: range start and end are NOT in the string, but specific fields in an object, and the message is only built on the last mile).
If you want to proceed forward it would be better imho to refactor so to account in a given field what is mentioned in this PR as "identificator", my2c.

@baldimir
Copy link
Contributor

I would say the engine shouldn't do the filtering and the UI should filter, if there are a lot of messages.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - kogito-springboot-examples job #875 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-examples -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-springboot-examples/875/display/redirect
See console log:

Console Logs [2023-08-22T10:24:43.058Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.105 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.148 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.084 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.099 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.009 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.007 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.039 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.063 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.173 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.044 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.021 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.123 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.859 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.016 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.318 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 10.833 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.135 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.101 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.093 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.628 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.137 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.007 s]
[2023-08-22T10:24:43.058Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.354 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 1.105 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto ............................................. SUCCESS [ 6.943 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.014 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.129 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.112 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 9.051 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.874 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.015 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.448 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.456 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.427 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.015 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.290 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.444 s]
[2023-08-22T10:24:43.058Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.092 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.012 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.708 s]
[2023-08-22T10:24:43.058Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.050 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.014 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.968 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.616 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.541 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.015 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.062 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.742 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.017 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.329 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.781 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.270 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.379 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.349 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.089 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.308 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 2.007 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.292 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.632 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.282 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.371 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.606 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.287 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.382 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.579 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.402 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.320 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.574 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.282 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.032 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.084 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.561 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.315 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.083 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.587 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.285 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.007 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.130 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.212 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.150 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.026 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.013 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.262 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.105 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.707 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.055 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.287 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.030 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.106 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 1.003 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.201 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.188 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.499 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.018 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.098 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.192 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.112 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.084 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.461 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.597 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.423 s]
[2023-08-22T10:24:43.059Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.475 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.270 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.261 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.395 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.323 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.358 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.379 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.333 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.304 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.335 s]
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.009 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 9.040 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 4.998 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.878 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.811 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.753 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.315 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.270 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 4.083 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.245 s]
[2023-08-22T10:24:43.059Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.693 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.008 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.129 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 6.882 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.073 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 7.706 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.010 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 2.117 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.557 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.241 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 1.020 s]
[2023-08-22T10:24:43.059Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 1.778 s]
[2023-08-22T10:24:43.059Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:24:43.059Z] [INFO] BUILD FAILURE
[2023-08-22T10:24:43.059Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:24:43.059Z] [INFO] Total time: 03:52 min
[2023-08-22T10:24:43.059Z] [INFO] Finished at: 2023-08-22T06:24:42-04:00
[2023-08-22T10:24:43.059Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:24:43.059Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:24:43.060Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:24:43.060Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:24:43.060Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:24:43.060Z] [ERROR] -> [Help 1]
[2023-08-22T10:24:43.060Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:24:43.060Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:24:43.060Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:24:43.060Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:24:43.060Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:24:43.060Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:24:43.060Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:24:43.060Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:24:43.060Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:24:43.060Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:24:43.060Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:24:43.060Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:24:43.060Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:24:43.060Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:24:43.060Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:24:43.060Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:24:43.060Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:24:43.060Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:24:43.060Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:24:43.060Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:24:43.060Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:24:43.060Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:24:43.060Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:24:43.060Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:24:43.060Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:24:43.060Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:24:43.060Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:24:43.060Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:24:43.060Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:24:43.060Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:24:43.060Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:24:43.060Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:24:43.060Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:24:43.060Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:24:43.060Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:24:43.060Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:24:43.060Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:24:43.060Z] [ERROR]
[2023-08-22T10:24:43.060Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:24:43.060Z] [ERROR]
[2023-08-22T10:24:43.060Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:24:43.060Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:24:43.060Z] [ERROR]
[2023-08-22T10:24:43.060Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:24:43.060Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:24:43.060Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:24:43.060Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:24:43.060Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:24:43.060Z] [INFO] OK [Executed in 0.138089 ms]
[2023-08-22T10:24:43.060Z]
[2023-08-22T10:24:43.060Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:24:43.060Z] [INFO] OK [Executed in 6.844669 ms]
[2023-08-22T10:24:43.060Z]
[2023-08-22T10:24:43.060Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-springboot-examples@tmp/config13172902502693528390tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:24:43.060Z] [INFO] NOT OK [Executed in 233203.918821 ms]
[2023-08-22T10:24:43.060Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:24:43.060Z]
[2023-08-22T10:24:43.060Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:24:43.060Z]
[2023-08-22T10:24:43.060Z] # Uploading artifacts
[2023-08-22T10:24:43.060Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:24:43.060Z]
[2023-08-22T10:24:43.060Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:24:43.060Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-springboot-examples@tmp/config13172902502693528390tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:24:43.060Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:24:43.142Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:24:43.539Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-22T10:24:43.562Z] Recording test results
[2023-08-22T10:24:44.516Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:24:44.532Z] Archiving artifacts
[2023-08-22T10:24:43.704Z] No test report files were found. Configuration error?
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:24:45.686Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:24:45.975Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-springboot-examples/875/consoleText
[2023-08-22T10:24:45.975Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - kogito-quarkus-examples job #880 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-examples -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-quarkus-examples/880/display/redirect
See console log:

Console Logs [2023-08-22T10:25:20.735Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.103 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.176 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.087 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.106 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.044 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.063 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.182 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.046 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.024 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.134 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.881 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.017 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.326 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 11.036 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.151 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.113 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.112 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.568 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.138 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.735Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.337 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 0.997 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto ............................................. SUCCESS [ 6.020 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.014 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.037 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.097 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 7.900 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.847 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.014 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.393 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.544 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.485 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.014 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.321 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.415 s]
[2023-08-22T10:25:20.735Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.135 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.708 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.002 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.904 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.547 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.494 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.062 s]
[2023-08-22T10:25:20.735Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.647 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.014 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.318 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.731 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.311 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.347 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.349 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.103 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.315 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 2.032 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.298 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.629 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.292 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.012 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.372 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.571 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.270 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.014 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.424 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.602 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.360 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.012 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.346 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.583 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.268 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.025 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.086 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.605 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.297 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.013 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.081 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.581 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.306 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.144 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.220 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.144 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.245 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.101 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.787 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.007 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.057 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.260 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.010 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.131 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 1.068 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.216 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.198 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.582 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.022 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.089 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.169 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.161 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.101 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.435 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.626 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.360 s]
[2023-08-22T10:25:20.736Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:25:20.736Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.469 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.106 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.007 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.259 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.419 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.304 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.333 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.348 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.344 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.297 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.330 s]
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.011 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 8.782 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 5.515 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.917 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.765 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.777 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.348 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.302 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 3.845 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.231 s]
[2023-08-22T10:25:20.736Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.807 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.142 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 6.639 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.073 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 7.151 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.009 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 2.021 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.577 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.247 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 0.958 s]
[2023-08-22T10:25:20.736Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 2.006 s]
[2023-08-22T10:25:20.736Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:25:20.736Z] [INFO] BUILD FAILURE
[2023-08-22T10:25:20.736Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:25:20.736Z] [INFO] Total time: 03:52 min
[2023-08-22T10:25:20.736Z] [INFO] Finished at: 2023-08-22T06:25:19-04:00
[2023-08-22T10:25:20.736Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:25:20.736Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:25:20.736Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:25:20.736Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:25:20.736Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:25:20.736Z] [ERROR] -> [Help 1]
[2023-08-22T10:25:20.736Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:25:20.736Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:25:20.737Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:25:20.737Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:25:20.737Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:25:20.737Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:25:20.737Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:25:20.737Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:20.737Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:25:20.737Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:25:20.737Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:25:20.737Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:25:20.737Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:25:20.737Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:25:20.737Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:25:20.737Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:25:20.737Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:25:20.737Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:25:20.737Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:20.737Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:25:20.737Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:25:20.737Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:20.737Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:20.737Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:25:20.737Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:25:20.737Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:25:20.737Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:25:20.737Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:25:20.737Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:25:20.737Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:25:20.737Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:25:20.737Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:25:20.737Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:25:20.737Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:20.737Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:20.737Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:20.737Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:25:20.737Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:25:20.737Z] [ERROR]
[2023-08-22T10:25:20.737Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:25:20.737Z] [ERROR]
[2023-08-22T10:25:20.737Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:25:20.737Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:25:20.737Z] [ERROR]
[2023-08-22T10:25:20.737Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:25:20.737Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:25:20.737Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:25:20.737Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:25:20.737Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:25:20.737Z] [INFO] OK [Executed in 0.143879 ms]
[2023-08-22T10:25:20.737Z]
[2023-08-22T10:25:20.737Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:25:20.737Z] [INFO] OK [Executed in 6.655885 ms]
[2023-08-22T10:25:20.737Z]
[2023-08-22T10:25:20.737Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-quarkus-examples@tmp/config12529982630836001739tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:25:20.737Z] [INFO] NOT OK [Executed in 233445.865317 ms]
[2023-08-22T10:25:20.737Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:25:20.737Z]
[2023-08-22T10:25:20.737Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:25:20.737Z]
[2023-08-22T10:25:20.737Z] # Uploading artifacts
[2023-08-22T10:25:20.737Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:25:20.737Z]
[2023-08-22T10:25:20.737Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:25:20.737Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-quarkus-examples@tmp/config12529982630836001739tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:25:20.737Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:25:20.812Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:25:21.247Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-22T10:25:21.270Z] Recording test results
[2023-08-22T10:25:22.201Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:25:22.219Z] Archiving artifacts
[2023-08-22T10:25:21.537Z] No test report files were found. Configuration error?
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:25:23.462Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:25:23.754Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-quarkus-examples/880/consoleText
[2023-08-22T10:25:23.754Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - kogito-runtimes job #1627 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1627/display/redirect
See console log:

Console Logs [2023-08-22T10:25:57.348Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.111 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.166 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.079 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.105 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.041 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.022 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.137 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.043 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.022 s]
[2023-08-22T10:25:57.348Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.194 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.933 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.017 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.340 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 10.531 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.150 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.110 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.110 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.010 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.478 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.136 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.331 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 0.968 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto ............................................. SUCCESS [ 5.867 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.013 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.023 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.097 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 7.931 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.904 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.015 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.408 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.499 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.422 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.013 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.290 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.390 s]
[2023-08-22T10:25:57.349Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.097 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.014 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.713 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.124 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.014 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.999 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.656 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.499 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.013 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.068 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.648 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.014 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.013 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.335 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.785 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.286 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.548 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.337 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.084 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.288 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 1.948 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.014 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.312 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.623 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.336 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.016 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.403 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.612 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.268 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.013 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.422 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.602 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.377 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.013 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.359 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.552 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.273 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.025 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.014 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.090 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.619 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.313 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.014 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.091 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.614 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.320 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.163 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.240 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.157 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.260 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.107 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.812 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.106 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.298 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.095 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 1.024 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.210 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.204 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.513 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.022 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.092 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.233 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.147 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.083 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.387 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.581 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.372 s]
[2023-08-22T10:25:57.349Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.349Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.466 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.190 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.320 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.390 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.310 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.338 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.370 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.303 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.323 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.419 s]
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.010 s]
[2023-08-22T10:25:57.349Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 9.296 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 4.917 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.934 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.606 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.807 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.311 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.267 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.009 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 3.911 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.231 s]
[2023-08-22T10:25:57.350Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.857 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.010 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.135 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 6.437 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.072 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 6.945 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.008 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 1.982 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.574 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.251 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 0.976 s]
[2023-08-22T10:25:57.350Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 2.027 s]
[2023-08-22T10:25:57.350Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:25:57.350Z] [INFO] BUILD FAILURE
[2023-08-22T10:25:57.350Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:25:57.350Z] [INFO] Total time: 03:52 min
[2023-08-22T10:25:57.350Z] [INFO] Finished at: 2023-08-22T06:25:56-04:00
[2023-08-22T10:25:57.350Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:25:57.350Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:25:57.350Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:25:57.350Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:25:57.350Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:25:57.350Z] [ERROR] -> [Help 1]
[2023-08-22T10:25:57.350Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:25:57.350Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:25:57.350Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:25:57.350Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:25:57.350Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:25:57.350Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:25:57.350Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:57.350Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:25:57.350Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:25:57.350Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:25:57.350Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:25:57.350Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:25:57.350Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:25:57.350Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:25:57.350Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:25:57.350Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:25:57.350Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:25:57.350Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:57.350Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:25:57.350Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:25:57.350Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:57.350Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:57.350Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:25:57.350Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:25:57.350Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:25:57.350Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:25:57.350Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:25:57.350Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:25:57.350Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:25:57.350Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:25:57.350Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:25:57.350Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:25:57.350Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:25:57.350Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:25:57.350Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:25:57.350Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:25:57.350Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:25:57.350Z] [ERROR]
[2023-08-22T10:25:57.350Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:25:57.350Z] [ERROR]
[2023-08-22T10:25:57.350Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:25:57.350Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:25:57.350Z] [ERROR]
[2023-08-22T10:25:57.350Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:25:57.350Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:25:57.350Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:25:57.351Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:25:57.351Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:25:57.351Z] [INFO] OK [Executed in 0.128872 ms]
[2023-08-22T10:25:57.351Z]
[2023-08-22T10:25:57.351Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:25:57.351Z] [INFO] OK [Executed in 8.315712 ms]
[2023-08-22T10:25:57.351Z]
[2023-08-22T10:25:57.351Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config3742308837458515859tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:25:57.351Z] [INFO] NOT OK [Executed in 233869.309868 ms]
[2023-08-22T10:25:57.351Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:25:57.351Z]
[2023-08-22T10:25:57.351Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:25:57.351Z]
[2023-08-22T10:25:57.351Z] # Uploading artifacts
[2023-08-22T10:25:57.351Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:25:57.351Z]
[2023-08-22T10:25:57.351Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:25:57.351Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config3742308837458515859tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:25:57.351Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:25:57.439Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:25:57.940Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-22T10:25:57.982Z] Recording test results
[2023-08-22T10:25:58.753Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:25:58.772Z] Archiving artifacts
[2023-08-22T10:25:57.913Z] No test report files were found. Configuration error?
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:25:59.776Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:26:00.067Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1627/consoleText
[2023-08-22T10:26:00.067Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - serverless-workflow-examples job #884 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-examples -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.serverless-workflow-examples/884/display/redirect
See console log:

Console Logs [2023-08-22T10:26:08.357Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.134 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.216 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.097 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.113 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.051 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.024 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.142 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.044 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.056 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.172 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.984 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.020 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.348 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 11.467 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.143 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.105 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.102 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.526 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.143 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.357Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.329 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 1.013 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto ............................................. SUCCESS [ 6.310 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.017 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.097 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.103 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 8.049 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.922 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.017 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.455 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.583 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.477 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.016 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.326 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.444 s]
[2023-08-22T10:26:08.357Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.154 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.015 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.727 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.098 s]
[2023-08-22T10:26:08.357Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.016 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.997 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.633 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.522 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.014 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.068 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.677 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.014 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.016 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.342 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.751 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.287 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.526 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.413 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.089 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.311 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 2.171 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.045 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.306 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.654 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.298 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.013 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.386 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.592 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.302 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.014 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.412 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.656 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.379 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.013 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.345 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.646 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.300 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.032 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.015 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.098 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.646 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.346 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.015 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.091 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.634 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.316 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.140 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.274 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.180 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.010 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.259 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.109 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.728 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.007 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.068 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.226 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.135 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 1.095 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.224 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.216 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.524 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.022 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.087 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.188 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.150 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.097 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.515 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.622 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.392 s]
[2023-08-22T10:26:08.358Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:08.358Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.496 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.219 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.320 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.524 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.354 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.391 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.417 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.379 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.350 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.410 s]
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.011 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 9.357 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 4.755 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.923 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.847 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.921 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.378 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.269 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.010 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 4.089 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.220 s]
[2023-08-22T10:26:08.358Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.740 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.011 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.130 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 6.381 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.077 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 6.948 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 1.948 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.586 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.264 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 0.997 s]
[2023-08-22T10:26:08.358Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 2.065 s]
[2023-08-22T10:26:08.358Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:08.358Z] [INFO] BUILD FAILURE
[2023-08-22T10:26:08.358Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:08.358Z] [INFO] Total time: 03:58 min
[2023-08-22T10:26:08.358Z] [INFO] Finished at: 2023-08-22T06:26:07-04:00
[2023-08-22T10:26:08.358Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:08.358Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:26:08.358Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:26:08.358Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:26:08.358Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:26:08.358Z] [ERROR] -> [Help 1]
[2023-08-22T10:26:08.358Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:26:08.358Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:26:08.359Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:26:08.359Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:26:08.359Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:26:08.359Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:26:08.359Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:26:08.359Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:08.359Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:26:08.359Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:26:08.359Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:26:08.359Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:26:08.359Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:26:08.359Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:26:08.359Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:26:08.359Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:26:08.359Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:26:08.359Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:26:08.359Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:08.359Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:26:08.359Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:26:08.359Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:08.359Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:08.359Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:26:08.359Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:26:08.359Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:26:08.359Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:26:08.359Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:26:08.359Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:26:08.359Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:26:08.359Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:26:08.359Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:26:08.359Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:26:08.359Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:08.359Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:08.359Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:08.359Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:26:08.359Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:26:08.359Z] [ERROR]
[2023-08-22T10:26:08.359Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:26:08.359Z] [ERROR]
[2023-08-22T10:26:08.359Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:26:08.359Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:26:08.359Z] [ERROR]
[2023-08-22T10:26:08.359Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:26:08.359Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:26:08.359Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:26:08.359Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:26:08.359Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:26:08.359Z] [INFO] OK [Executed in 0.189175 ms]
[2023-08-22T10:26:08.359Z]
[2023-08-22T10:26:08.359Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:26:08.359Z] [INFO] OK [Executed in 7.564516 ms]
[2023-08-22T10:26:08.359Z]
[2023-08-22T10:26:08.359Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.serverless-workflow-examples@tmp/config11078395052693160167tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:26:08.359Z] [INFO] NOT OK [Executed in 240182.323542 ms]
[2023-08-22T10:26:08.359Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:26:08.359Z]
[2023-08-22T10:26:08.359Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:26:08.359Z]
[2023-08-22T10:26:08.359Z] # Uploading artifacts
[2023-08-22T10:26:08.359Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:26:08.359Z]
[2023-08-22T10:26:08.359Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:26:08.359Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.serverless-workflow-examples@tmp/config11078395052693160167tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:26:08.359Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:26:08.452Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:26:08.861Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-22T10:26:08.890Z] Recording test results
[2023-08-22T10:26:09.901Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:26:09.919Z] Archiving artifacts
[2023-08-22T10:26:08.900Z] No test report files were found. Configuration error?
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:26:11.107Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:26:11.400Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.serverless-workflow-examples/884/consoleText
[2023-08-22T10:26:11.400Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - kie-jpmml-integration job #11 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kie-jpmml-integration -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kie-jpmml-integration/11/display/redirect
See console log:

Console Logs [2023-08-22T10:26:27.996Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.122 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.248 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.129 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.133 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.008 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.011 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.048 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.023 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.159 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.058 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.024 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.136 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.949 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.017 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.421 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 11.889 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.145 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.101 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.099 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.617 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.145 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.996Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.379 s]
[2023-08-22T10:26:27.996Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 0.986 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto ............................................. SUCCESS [ 6.401 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.018 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.099 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.101 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 7.757 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.922 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.023 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.516 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.556 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.442 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.333 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.370 s]
[2023-08-22T10:26:27.997Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.096 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.658 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.074 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.014 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.988 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.628 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.460 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.062 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.669 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.014 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.355 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.768 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.334 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.751 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.413 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.083 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.326 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 2.099 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.324 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.612 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.284 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.016 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.422 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.580 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.271 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.411 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.686 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.427 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.015 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.335 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.656 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.264 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.026 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.088 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.593 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.340 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.015 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.097 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.697 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.352 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.010 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.164 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.247 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.227 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.013 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.329 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.121 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.759 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.069 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.278 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.095 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 1.055 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.278 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.308 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.510 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.023 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.090 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.205 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.133 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.101 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.471 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.629 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.010 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.446 s]
[2023-08-22T10:26:27.997Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:27.997Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.486 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.249 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.253 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.405 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.335 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.398 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.370 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.315 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.300 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.350 s]
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.008 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 9.194 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 4.792 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.916 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.736 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.650 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.319 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.265 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 3.860 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.212 s]
[2023-08-22T10:26:27.997Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.573 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.132 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 5.945 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.071 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 6.785 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.008 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 1.939 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.575 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.258 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 0.990 s]
[2023-08-22T10:26:27.997Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 1.863 s]
[2023-08-22T10:26:27.998Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:27.998Z] [INFO] BUILD FAILURE
[2023-08-22T10:26:27.998Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:27.998Z] [INFO] Total time: 03:58 min
[2023-08-22T10:26:27.998Z] [INFO] Finished at: 2023-08-22T06:26:27-04:00
[2023-08-22T10:26:27.998Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:27.998Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:26:27.998Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:26:27.998Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:26:27.998Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:26:27.998Z] [ERROR] -> [Help 1]
[2023-08-22T10:26:27.998Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:26:27.998Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:26:27.998Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:26:27.998Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:26:27.998Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:26:27.998Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:26:27.998Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:27.998Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:26:27.998Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:26:27.998Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:26:27.998Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:26:27.998Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:26:27.998Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:26:27.998Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:26:27.998Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:26:27.998Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:26:27.998Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:26:27.998Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:27.998Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:26:27.998Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:26:27.998Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:27.998Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:27.998Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:26:27.998Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:26:27.998Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:26:27.998Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:26:27.998Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:26:27.998Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:26:27.998Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:26:27.998Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:26:27.998Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:26:27.998Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:26:27.998Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:27.998Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:27.998Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:27.998Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:26:27.998Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:26:27.998Z] [ERROR]
[2023-08-22T10:26:27.998Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:26:27.998Z] [ERROR]
[2023-08-22T10:26:27.998Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:26:27.998Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:26:27.998Z] [ERROR]
[2023-08-22T10:26:27.998Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:26:27.998Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:26:27.998Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:26:27.998Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:26:27.998Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:26:27.998Z] [INFO] OK [Executed in 0.082184 ms]
[2023-08-22T10:26:27.998Z]
[2023-08-22T10:26:27.998Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:26:27.998Z] [INFO] OK [Executed in 8.93 ms]
[2023-08-22T10:26:27.998Z]
[2023-08-22T10:26:27.998Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kie-jpmml-integration@tmp/config2230722858009145521tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:26:27.998Z] [INFO] NOT OK [Executed in 239792.46899 ms]
[2023-08-22T10:26:27.998Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:26:27.998Z]
[2023-08-22T10:26:27.998Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:26:27.998Z]
[2023-08-22T10:26:27.998Z] # Uploading artifacts
[2023-08-22T10:26:27.998Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:26:27.998Z]
[2023-08-22T10:26:27.998Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:26:27.998Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kie-jpmml-integration@tmp/config2230722858009145521tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:26:27.998Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:26:28.073Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:26:28.477Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-22T10:26:28.501Z] Recording test results
[2023-08-22T10:26:29.243Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:26:29.261Z] Archiving artifacts
[2023-08-22T10:26:28.750Z] No test report files were found. Configuration error?
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:26:30.105Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:26:30.396Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kie-jpmml-integration/11/consoleText
[2023-08-22T10:26:30.396Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - kogito-apps job #1643 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-apps -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-apps/1643/display/redirect
See console log:

Console Logs [2023-08-22T10:26:43.598Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.124 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.247 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.096 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.127 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.010 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.050 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.026 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.158 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.050 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.026 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.142 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.994 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.019 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.363 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 11.125 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.146 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.109 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.106 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.010 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.638 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.153 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.338 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 0.972 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto ............................................. SUCCESS [ 6.326 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.015 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.056 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.094 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 8.072 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.916 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.016 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.409 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.530 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.470 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.014 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.375 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.501 s]
[2023-08-22T10:26:43.598Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.098 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.013 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.684 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.180 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.014 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.955 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.650 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.469 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.015 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.067 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.642 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.013 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.013 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.336 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.778 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.307 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.557 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.403 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.086 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.316 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 2.128 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.014 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.348 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.601 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.318 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.017 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.415 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.729 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.310 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.015 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.459 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.710 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.431 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.017 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.386 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.675 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.317 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.033 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.018 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.131 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.711 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.351 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.014 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.088 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.614 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.324 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.164 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.204 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.186 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.251 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.102 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.719 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.103 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.290 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.098 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 1.243 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.217 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.199 s]
[2023-08-22T10:26:43.598Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.563 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.020 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.074 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.174 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.160 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.106 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.381 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.622 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:26:43.598Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.392 s]
[2023-08-22T10:26:43.598Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.599Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.491 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.266 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.008 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.251 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.465 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.329 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.357 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.371 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.308 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.318 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.370 s]
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.010 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 8.964 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 4.758 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.934 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.446 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.785 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.327 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.290 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 3.899 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.264 s]
[2023-08-22T10:26:43.599Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.697 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.136 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 6.274 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.076 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 6.846 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.009 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 1.992 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.597 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.232 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 0.974 s]
[2023-08-22T10:26:43.599Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 1.945 s]
[2023-08-22T10:26:43.599Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:43.599Z] [INFO] BUILD FAILURE
[2023-08-22T10:26:43.599Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:43.599Z] [INFO] Total time: 03:58 min
[2023-08-22T10:26:43.599Z] [INFO] Finished at: 2023-08-22T06:26:42-04:00
[2023-08-22T10:26:43.599Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:26:43.599Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:26:43.599Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:26:43.599Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:26:43.599Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:26:43.599Z] [ERROR] -> [Help 1]
[2023-08-22T10:26:43.599Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:26:43.599Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:26:43.599Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:26:43.599Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:26:43.599Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:26:43.599Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:26:43.599Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:43.599Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:26:43.599Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:26:43.599Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:26:43.599Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:26:43.599Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:26:43.599Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:26:43.599Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:26:43.599Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:26:43.599Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:26:43.599Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:26:43.599Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:43.599Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:26:43.599Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:26:43.599Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:43.599Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:43.599Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:26:43.599Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:26:43.599Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:26:43.599Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:26:43.599Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:26:43.599Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:26:43.599Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:26:43.599Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:26:43.599Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:26:43.599Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:26:43.599Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:26:43.599Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:26:43.599Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:26:43.599Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:26:43.599Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:26:43.599Z] [ERROR]
[2023-08-22T10:26:43.599Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:26:43.599Z] [ERROR]
[2023-08-22T10:26:43.599Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:26:43.599Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:26:43.599Z] [ERROR]
[2023-08-22T10:26:43.600Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:26:43.600Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:26:43.600Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:26:43.600Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:26:43.600Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:26:43.600Z] [INFO] OK [Executed in 0.182863 ms]
[2023-08-22T10:26:43.600Z]
[2023-08-22T10:26:43.600Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:26:43.600Z] [INFO] OK [Executed in 7.454874 ms]
[2023-08-22T10:26:43.600Z]
[2023-08-22T10:26:43.600Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-apps@tmp/config4666232548866750807tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:26:43.600Z] [INFO] NOT OK [Executed in 239384.533257 ms]
[2023-08-22T10:26:43.600Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:26:43.600Z]
[2023-08-22T10:26:43.600Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:26:43.600Z]
[2023-08-22T10:26:43.600Z] # Uploading artifacts
[2023-08-22T10:26:43.600Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:26:43.600Z]
[2023-08-22T10:26:43.600Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:26:43.600Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-apps@tmp/config4666232548866750807tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:26:43.600Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:26:43.683Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:26:44.113Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-22T10:26:44.138Z] Recording test results
[2023-08-22T10:26:45.005Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:26:45.025Z] Archiving artifacts
[2023-08-22T10:26:44.446Z] No test report files were found. Configuration error?
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:26:46.124Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:26:46.414Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-apps/1643/consoleText
[2023-08-22T10:26:46.414Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 22, 2023

(tests) - drools job #1661 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT= -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/drools -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1661/display/redirect

Test results:

  • PASSED: 20841
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 1.423 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.038 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 7.076 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.023 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 1.468 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.036 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 5.789 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [01:17 min]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.050 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 36.668 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [03:49 min]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 5.129 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 4.316 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 4.052 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.022 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 5.510 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 4.803 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.020 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 4.093 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.022 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 6.109 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto ............................................. SUCCESS [ 5.965 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.036 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 3.871 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 2.040 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [01:15 min]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 8.685 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.034 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 2.811 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 3.072 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 3.386 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.038 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 2.638 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 3.181 s]
[2023-08-22T10:53:08.382Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 1.679 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.034 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 4.993 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 5.686 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.038 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 4.187 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 12.742 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 4.710 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.034 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 1.950 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 5.092 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.033 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.032 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 4.007 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 7.253 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 2.857 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [01:24 min]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 8.979 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 1.595 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.333 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 7.135 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.041 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 2.910 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 6.379 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 2.807 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.038 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 3.208 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 6.707 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 2.758 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.033 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 3.443 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 7.652 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 3.881 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.032 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 3.192 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 5.810 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 2.880 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.091 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.038 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 1.649 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 4.966 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 3.344 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.036 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 1.543 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 5.264 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 3.080 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.029 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 2.866 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 6.355 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 2.791 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.023 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.024 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 4.018 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 8.341 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 6.736 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.021 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 1.672 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 6.657 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.019 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 1.694 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 5.484 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 11.914 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 8.906 s]
[2023-08-22T10:53:08.382Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 3.188 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.044 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.023 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 1.614 s]
[2023-08-22T10:53:08.382Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 6.041 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 3.869 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 1.598 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.808 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 6.442 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.023 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 7.217 s]
[2023-08-22T10:53:08.383Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.021 s]
[2023-08-22T10:53:08.383Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 3.692 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 7.669 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.022 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 1.273 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 8.135 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 15.825 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 14.771 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 11.912 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 6.386 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 5.779 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 6.545 s]
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.023 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 10.342 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 5.416 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 14.778 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 33.319 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 17.968 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 19.921 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 16.939 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.027 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 21.004 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 12.335 s]
[2023-08-22T10:53:08.383Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 26.785 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.022 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 2.195 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 8.149 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 1.805 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [01:52 min]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.023 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 3.897 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 4.335 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 3.822 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 2.773 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 4.183 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools documentation ............................... SUCCESS [ 15.614 s]
[2023-08-22T10:53:08.383Z] [INFO] Drools distribution ................................ SUCCESS [ 39.756 s]
[2023-08-22T10:53:08.383Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:53:08.383Z] [INFO] BUILD FAILURE
[2023-08-22T10:53:08.383Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:53:08.383Z] [INFO] Total time: 32:11 min
[2023-08-22T10:53:08.383Z] [INFO] Finished at: 2023-08-22T06:53:07-04:00
[2023-08-22T10:53:08.383Z] [INFO] ------------------------------------------------------------------------
[2023-08-22T10:53:08.383Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:53:08.383Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:53:08.383Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:53:08.383Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:53:08.383Z] [ERROR] -> [Help 1]
[2023-08-22T10:53:08.383Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:53:08.383Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:53:08.383Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:53:08.383Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:53:08.383Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:53:08.383Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:53:08.383Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:53:08.383Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:53:08.383Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-22T10:53:08.383Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-22T10:53:08.383Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-22T10:53:08.383Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-22T10:53:08.383Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-22T10:53:08.383Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-22T10:53:08.383Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-22T10:53:08.383Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-22T10:53:08.383Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-22T10:53:08.383Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:53:08.383Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-22T10:53:08.383Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-22T10:53:08.383Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:53:08.383Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:53:08.383Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:53:08.383Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:53:08.383Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:53:08.383Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-22T10:53:08.384Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-22T10:53:08.384Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-22T10:53:08.384Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-22T10:53:08.384Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-22T10:53:08.384Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-22T10:53:08.384Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-22T10:53:08.384Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-22T10:53:08.384Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-22T10:53:08.384Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-22T10:53:08.384Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-22T10:53:08.384Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-22T10:53:08.384Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-22T10:53:08.384Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-22T10:53:08.384Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-22T10:53:08.384Z] [ERROR]
[2023-08-22T10:53:08.384Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-22T10:53:08.384Z] [ERROR]
[2023-08-22T10:53:08.384Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-22T10:53:08.384Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-22T10:53:08.384Z] [ERROR]
[2023-08-22T10:53:08.384Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-22T10:53:08.384Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-22T10:53:08.384Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-22T10:53:08.384Z] [INFO] Execution summary for kiegroup/drools
[2023-08-22T10:53:08.384Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-22T10:53:08.384Z] [INFO] OK [Executed in 0.063168 ms]
[2023-08-22T10:53:08.384Z]
[2023-08-22T10:53:08.384Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-22T10:53:08.384Z] [INFO] OK [Executed in 7.297022 ms]
[2023-08-22T10:53:08.384Z]
[2023-08-22T10:53:08.384Z] # [COMMANDS] [kiegroup/drools] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-22T10:53:08.384Z] [INFO] OK [Executed in 8.627938 ms]
[2023-08-22T10:53:08.384Z]
[2023-08-22T10:53:08.384Z] # [COMMANDS] [kiegroup/drools] mvn clean install -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools@tmp/config377482138836954370tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage dependency:tree -Dfull -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-22T10:53:08.384Z] [INFO] NOT OK [Executed in 1932281.707089 ms]
[2023-08-22T10:53:08.384Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-22T10:53:08.384Z]
[2023-08-22T10:53:08.384Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-22T10:53:08.384Z]
[2023-08-22T10:53:08.384Z] # Uploading artifacts
[2023-08-22T10:53:08.384Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-22T10:53:08.384Z]
[2023-08-22T10:53:08.384Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-22T10:53:08.384Z] [ERROR] Failed to execute mvn clean install -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools@tmp/config377482138836954370tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage dependency:tree -Dfull -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-22T10:53:08.384Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-22T10:53:08.460Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:53:08.853Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[2023-08-22T10:53:08.854Z] find: ‘./bc/kiegroup_drools/drools-docs/node/node_modules’: No such file or directory
[2023-08-22T10:53:08.854Z] find: ‘./bc/kiegroup_drools/drools-docs/node_modules’: No such file or directory
[2023-08-22T10:53:09.108Z] + true
[Pipeline] junit
[2023-08-22T10:53:09.135Z] Recording test results
[2023-08-22T10:53:11.822Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-22T10:53:11.840Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-22T10:53:13.082Z] + rm -rf console.log
[Pipeline] sh
[2023-08-22T10:53:13.375Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1661/consoleText
[2023-08-22T10:53:13.375Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 23, 2023

(tests) - kie-jpmml-integration job #13 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kie-jpmml-integration -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kie-jpmml-integration/13/display/redirect
See console log:

Console Logs [2023-08-23T07:24:36.056Z] [INFO] Drools :: API examples :: KieModule from Multiple Files SUCCESS [ 0.111 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: examples :: KieFileSystemExample ......... SUCCESS [ 0.097 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.104 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.164 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.086 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.107 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.008 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.044 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.024 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.225 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.015 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.054 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.051 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.157 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [ 0.902 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.018 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 0.331 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [ 11.449 s]
[2023-08-23T07:24:36.056Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 0.154 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 0.105 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 0.096 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 1.386 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 0.158 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.417 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.012 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 1.086 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto ............................................. SUCCESS [ 6.080 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.015 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.061 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.092 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 7.551 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 0.835 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.013 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.445 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 0.575 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.524 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.409 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.482 s]
[2023-08-23T07:24:36.057Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.093 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.013 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 0.657 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.033 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 0.922 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 1.636 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.494 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.062 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.636 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.012 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.013 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.312 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 0.744 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.276 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [ 5.189 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 1.359 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.082 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.283 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 1.989 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.015 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.307 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.610 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.288 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.018 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.339 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.555 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.284 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.414 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 0.555 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.362 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.012 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.341 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.540 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.261 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.027 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 0.086 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 0.595 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 0.300 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.014 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 0.086 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 0.616 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 0.311 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.010 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.135 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 0.203 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.158 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.008 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.247 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 0.100 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.652 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.008 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.097 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 0.257 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.089 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 0.991 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 0.200 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.201 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 0.499 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.019 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.008 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.073 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 0.174 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 0.142 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 0.092 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Validation ....... FAILURE [ 1.328 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 0.550 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.008 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 0.354 s]
[2023-08-23T07:24:36.057Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.008 s]
[2023-08-23T07:24:36.057Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.455 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 1.205 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.007 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.242 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.376 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 0.304 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 0.345 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 0.354 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.290 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.311 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.325 s]
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.011 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 8.559 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 4.717 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 0.962 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 7.180 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 2.814 s]
[2023-08-23T07:24:36.057Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 0.311 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 0.310 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 3.664 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 0.208 s]
[2023-08-23T07:24:36.058Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 5.540 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.009 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 0.153 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 6.045 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 0.073 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [ 6.755 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.011 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 1.979 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 0.547 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 0.264 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 0.929 s]
[2023-08-23T07:24:36.058Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 1.925 s]
[2023-08-23T07:24:36.058Z] [INFO] ------------------------------------------------------------------------
[2023-08-23T07:24:36.058Z] [INFO] BUILD FAILURE
[2023-08-23T07:24:36.058Z] [INFO] ------------------------------------------------------------------------
[2023-08-23T07:24:36.058Z] [INFO] Total time: 03:49 min
[2023-08-23T07:24:36.058Z] [INFO] Finished at: 2023-08-23T03:24:35-04:00
[2023-08-23T07:24:36.058Z] [INFO] ------------------------------------------------------------------------
[2023-08-23T07:24:36.058Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null: InvocationTargetException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-23T07:24:36.058Z] [ERROR] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-23T07:24:36.058Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-23T07:24:36.058Z] [ERROR] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-23T07:24:36.058Z] [ERROR] -> [Help 1]
[2023-08-23T07:24:36.058Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (validation-bootstrap) on project kie-dmn-validation: An exception occured while executing the Java class. null
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-23T07:24:36.058Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-23T07:24:36.058Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-23T07:24:36.058Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-23T07:24:36.058Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-23T07:24:36.058Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-23T07:24:36.058Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-23T07:24:36.058Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-23T07:24:36.058Z] Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. null
[2023-08-23T07:24:36.058Z] at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:345)
[2023-08-23T07:24:36.058Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-23T07:24:36.058Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-23T07:24:36.058Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-23T07:24:36.058Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-23T07:24:36.058Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-23T07:24:36.058Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-23T07:24:36.058Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-23T07:24:36.058Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-23T07:24:36.058Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-23T07:24:36.058Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-23T07:24:36.058Z] Caused by: java.lang.reflect.InvocationTargetException
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-23T07:24:36.058Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-23T07:24:36.058Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-23T07:24:36.058Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-23T07:24:36.058Z] Caused by: org.kie.api.builder.CompilationErrorsException: Unable to create KieModule, Errors Existed: [Message [id=1, level=ERROR, path=src/main/java/org/kie/dmn/validation/MessageReporter.java, line=38, column=1389
[2023-08-23T07:24:36.058Z] text=The constructor DefaultDMNMessagesManager(Resource) is undefined], Message [id=2, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-typeref.drl, line=34, column=0
[2023-08-23T07:24:36.058Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter'], Message [id=3, kieBase=defaultKieBase, level=ERROR, path=org/kie/dmn/validation/DMNv1_2/dmn-validation-rules-dmndi.drl, line=27, column=0
[2023-08-23T07:24:36.058Z] text=Unable to find class 'org.kie.dmn.validation.MessageReporter']]
[2023-08-23T07:24:36.058Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:519)
[2023-08-23T07:24:36.058Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:525)
[2023-08-23T07:24:36.058Z] at org.drools.compiler.kie.builder.impl.KieBuilderImpl.getKieModule (KieBuilderImpl.java:500)
[2023-08-23T07:24:36.058Z] at org.kie.dmn.validation.bootstrap.GenerateModel.generate (GenerateModel.java:72)
[2023-08-23T07:24:36.058Z] at org.kie.dmn.validation.bootstrap.ValidationBootstrapMain.main (ValidationBootstrapMain.java:49)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-23T07:24:36.058Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-23T07:24:36.058Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-23T07:24:36.058Z] at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:294)
[2023-08-23T07:24:36.058Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-23T07:24:36.058Z] [ERROR]
[2023-08-23T07:24:36.058Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-23T07:24:36.058Z] [ERROR]
[2023-08-23T07:24:36.058Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-23T07:24:36.058Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-23T07:24:36.058Z] [ERROR]
[2023-08-23T07:24:36.058Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-23T07:24:36.058Z] [ERROR] mvn -rf :kie-dmn-validation
[2023-08-23T07:24:36.314Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-23T07:24:36.314Z] [INFO] Execution summary for kiegroup/drools
[2023-08-23T07:24:36.314Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-23T07:24:36.314Z] [INFO] OK [Executed in 0.072506 ms]
[2023-08-23T07:24:36.314Z]
[2023-08-23T07:24:36.314Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-23T07:24:36.314Z] [INFO] OK [Executed in 9.277052 ms]
[2023-08-23T07:24:36.314Z]
[2023-08-23T07:24:36.314Z] # [COMMANDS] [kiegroup/drools] mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kie-jpmml-integration@tmp/config16691758352815371593tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-23T07:24:36.314Z] [INFO] NOT OK [Executed in 230530.66821 ms]
[2023-08-23T07:24:36.314Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-23T07:24:36.314Z]
[2023-08-23T07:24:36.314Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-23T07:24:36.314Z]
[2023-08-23T07:24:36.314Z] # Uploading artifacts
[2023-08-23T07:24:36.314Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-23T07:24:36.314Z]
[2023-08-23T07:24:36.314Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-23T07:24:36.314Z] [ERROR] Failed to execute mvn clean install -Dquickly -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kie-jpmml-integration@tmp/config16691758352815371593tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-23T07:24:36.314Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-23T07:24:36.391Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-23T07:24:36.797Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-23T07:24:36.832Z] Recording test results
[2023-08-23T07:24:37.323Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-23T07:24:37.344Z] Archiving artifacts
[Pipeline] }
[2023-08-23T07:24:36.746Z] No test report files were found. Configuration error?
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-23T07:24:38.154Z] + rm -rf console.log
[Pipeline] sh

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 24, 2023

(tests) - kie-jpmml-integration job #21 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kie-jpmml-integration -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kie-jpmml-integration/21/display/redirect

Test results:

  • PASSED: 0
  • FAILED: 6

Those are the test failures:

org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testInvokeIris_in1_ok java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:217)
at org.kie.dmn.core.util.KieHelper.createJar(KieHelper.java:61)
at org.kie.dmn.core.util.KieHelper.getKieContainer(KieHelper.java:40)
at org.kie.dmn.core.util.DMNRuntimeUtil.createRuntimeWithAdditionalResources(DMNRuntimeUtil.java:103)
at org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testInvokeIris_in1_ok(DMNInvokingjPMMLTest.java:101)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:220)
at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:188)
at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:202)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:181)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:142)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:117)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testInvokeIris_in1_wrong java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:217)
at org.kie.dmn.core.util.KieHelper.createJar(KieHelper.java:61)
at org.kie.dmn.core.util.KieHelper.getKieContainer(KieHelper.java:40)
at org.kie.dmn.core.util.DMNRuntimeUtil.createRuntimeWithAdditionalResources(DMNRuntimeUtil.java:103)
at org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testInvokeIris_in1_wrong(DMNInvokingjPMMLTest.java:79)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:220)
at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:188)
at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:202)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:181)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:142)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:117)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testMultipleOutputs java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:217)
at org.kie.dmn.core.util.KieHelper.createJar(KieHelper.java:61)
at org.kie.dmn.core.util.KieHelper.getKieContainer(KieHelper.java:40)
at org.kie.dmn.core.util.DMNRuntimeUtil.createRuntimeWithAdditionalResources(DMNRuntimeUtil.java:103)
at org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testMultipleOutputs(DMNInvokingjPMMLTest.java:141)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:220)
at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:188)
at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:202)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:181)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:142)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:117)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testInvokeIris java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:217)
at org.kie.dmn.core.util.KieHelper.createJar(KieHelper.java:61)
at org.kie.dmn.core.util.KieHelper.getKieContainer(KieHelper.java:40)
at org.kie.dmn.core.util.DMNRuntimeUtil.createRuntimeWithAdditionalResources(DMNRuntimeUtil.java:103)
at org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testInvokeIris(DMNInvokingjPMMLTest.java:52)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:220)
at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:188)
at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:202)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:181)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:142)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:117)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testMultipleOutputsNoModelName java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:217)
at org.kie.dmn.core.util.KieHelper.createJar(KieHelper.java:61)
at org.kie.dmn.core.util.KieHelper.getKieContainer(KieHelper.java:40)
at org.kie.dmn.core.util.DMNRuntimeUtil.createRuntimeWithAdditionalResources(DMNRuntimeUtil.java:103)
at org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testMultipleOutputsNoModelName(DMNInvokingjPMMLTest.java:208)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:220)
at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:188)
at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:202)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:181)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:142)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:117)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testDummyInteger java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:217)
at org.kie.dmn.core.util.KieHelper.createJar(KieHelper.java:61)
at org.kie.dmn.core.util.KieHelper.getKieContainer(KieHelper.java:40)
at org.kie.dmn.core.util.DMNRuntimeUtil.createRuntimeWithAdditionalResources(DMNRuntimeUtil.java:103)
at org.kie.dmn.jpmml.DMNInvokingjPMMLTest.testDummyInteger(DMNInvokingjPMMLTest.java:118)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:220)
at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:188)
at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:202)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:181)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:142)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:117)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)

public DMNResultImpl(DMNModel model) {
this.model = model;
messages = new DefaultDMNMessagesManager(model != null ? model.getResource() : null);
messages = new DefaultDMNMessagesManager(model != null ? model.getResource() : null, false);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure I believe the way currently the PR holds.

You have:

  • a default in the interface for true
  • a pragmatic default in the runtime implementation for false
  • for the tests, they are explicited to true

Overall, it seems to me tests are not updated to reflect the actual runtime behaviour (of false).

Imho, you should consider the refactors suggested in https://github.com/kiegroup/drools/pull/5461#pullrequestreview-1586129558 by aligning the test of the new behaviour if confirmed by https://github.com/kiegroup/drools/pull/5461#issuecomment-1686116286 and the downstream considerations for the Editor UI as mentioned in chat as you requested.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 24, 2023

(tests) - drools job #1671 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT= -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/drools -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1671/display/redirect
See console log:

Console Logs [2023-08-24T09:09:18.960Z] [INFO] Drools :: Verifier ................................. SUCCESS [ 0.025 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools Workbench - Verifier Api .................... SUCCESS [ 1.684 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Verifier DRL ............................. SUCCESS [ 33.105 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools Workbench - Verifier Core ................... SUCCESS [ 7.561 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools examples .................................... SUCCESS [ 5.002 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: CI .......................................... SUCCESS [01:04 min]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Engine :: Classic ........................ SUCCESS [ 0.058 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples ............................. SUCCESS [ 0.025 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: Default KieSession ....... SUCCESS [ 7.847 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: Named KieSession ......... SUCCESS [ 4.750 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: KieBase Inclusion ........ SUCCESS [ 4.924 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: Default KieSession From File SUCCESS [ 4.914 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: Named KieSession from File SUCCESS [ 4.683 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: KieModule from Multiple Files SUCCESS [ 4.899 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: examples :: KieFileSystemExample ......... SUCCESS [ 4.515 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 4.969 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 10.627 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 3.618 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 5.015 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 1.386 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.037 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 7.063 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 1.562 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.039 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 6.019 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SUCCESS [01:20 min]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Engine ................................... SUCCESS [ 0.048 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Alpha Network Compiler ................... SUCCESS [ 37.847 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SUCCESS [03:55 min]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SUCCESS [ 5.206 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SUCCESS [ 4.454 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SUCCESS [ 4.269 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units Parent SUCCESS [ 0.022 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Jar for Integration tests with Rule Units SUCCESS [ 5.642 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Test Coverage :: Integration tests with Rule Units SUCCESS [ 5.087 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.024 s]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 4.189 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.025 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 6.328 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto ............................................. SUCCESS [ 6.767 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.034 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 4.067 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 2.186 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [01:18 min]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 9.383 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.041 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 2.939 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Common :: Core ........................... SUCCESS [ 3.521 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 3.419 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.034 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 2.679 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 3.404 s]
[2023-08-24T09:09:18.960Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 1.805 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.037 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 4.691 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 5.776 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.038 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 4.340 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 12.867 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 4.665 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.037 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 1.576 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 5.770 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.037 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.042 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 4.169 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 7.603 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 2.931 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: Decision Model Notation :: Core ............. SUCCESS [01:12 min]
[2023-08-24T09:09:18.960Z] [INFO] Drools :: Scenario Simulation Backend .............. SUCCESS [ 9.035 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 1.808 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.349 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SUCCESS [ 7.407 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.047 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 3.069 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 6.583 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 2.920 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.036 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 3.331 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 7.282 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 3.092 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.033 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 3.841 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SUCCESS [ 8.297 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 4.064 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.036 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 3.472 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 6.362 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 2.923 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Dependencies ........................ SUCCESS [ 0.105 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.036 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SUCCESS [ 1.811 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SUCCESS [ 5.209 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SUCCESS [ 3.084 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.035 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SUCCESS [ 1.741 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SUCCESS [ 5.338 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SUCCESS [ 3.085 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.025 s]
[2023-08-24T09:09:18.960Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 2.905 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SUCCESS [ 6.697 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 2.722 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.024 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 4.056 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SUCCESS [ 4.750 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 6.622 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.021 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 1.661 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis :: Parser ................ SUCCESS [ 6.726 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 1.814 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SUCCESS [ 5.399 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SUCCESS [ 12.278 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 9.476 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: FastUtil ................................. SUCCESS [ 3.532 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.051 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.024 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 1.694 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: Tests ................................ SUCCESS [ 6.163 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: DRL :: Tests Without IndexFile .............. SUCCESS [ 3.910 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SUCCESS [ 1.638 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: Validation ....... SUCCESS [ 20.608 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SUCCESS [ 5.590 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.024 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SUCCESS [ 9.465 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SUCCESS [ 6.428 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SUCCESS [ 6.787 s]
[2023-08-24T09:09:18.961Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.024 s]
[2023-08-24T09:09:18.961Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SUCCESS [ 1.098 s]
[2023-08-24T09:09:18.961Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SUCCESS [ 4.480 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SUCCESS [ 11.901 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 4.027 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SUCCESS [ 8.110 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.023 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SUCCESS [ 5.639 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SUCCESS [ 2.968 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 1.331 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 8.696 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SUCCESS [ 16.274 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SUCCESS [ 15.604 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SUCCESS [ 12.653 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 6.546 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 5.911 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 7.074 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Maven Plugin ................................ SUCCESS [01:44 min]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Maven Archetypes ............................ SUCCESS [ 0.025 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... FAILURE [ 7.993 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SUCCESS [ 6.369 s]
[2023-08-24T09:09:18.961Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SUCCESS [ 7.332 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.028 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 12.174 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SUCCESS [ 5.500 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SUCCESS [ 15.763 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SUCCESS [ 34.929 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SUCCESS [ 18.009 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Integration Test with Rule Unit SUCCESS [ 19.867 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Quickstart Integration Test SUCCESS [ 16.673 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Examples ............ SUCCESS [ 0.030 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 21.995 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Quarkus Extension :: Examples :: Reactive SUCCESS [ 11.187 s]
[2023-08-24T09:09:18.961Z] [INFO] Kie :: Jpmml Migration Recipe ...................... SUCCESS [ 26.049 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Reliability .............................. SUCCESS [ 0.026 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Reliability :: Core ...................... SUCCESS [ 2.203 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Reliability :: Infinispan ................ SUCCESS [ 8.791 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Reliability :: H2 MVStore persistence .... SUCCESS [ 1.760 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: Reliability :: Tests ..................... SUCCESS [01:56 min]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: DRL on YAML .............................. SUCCESS [ 0.027 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: DRL on YAML :: schema generator .......... SUCCESS [ 2.848 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: DRL on YAML :: model ..................... SUCCESS [ 4.363 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: DRL on YAML :: to DRL emitter ............ SUCCESS [ 3.884 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: DRL on YAML :: CLI ....................... SUCCESS [ 2.621 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools :: DRL on YAML :: CLI tests ................. SUCCESS [ 4.149 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools documentation ............................... SUCCESS [ 13.430 s]
[2023-08-24T09:09:18.961Z] [INFO] Drools distribution ................................ SUCCESS [ 33.527 s]
[2023-08-24T09:09:18.961Z] [INFO] ------------------------------------------------------------------------
[2023-08-24T09:09:18.961Z] [INFO] BUILD FAILURE
[2023-08-24T09:09:18.961Z] [INFO] ------------------------------------------------------------------------
[2023-08-24T09:09:18.961Z] [INFO] Total time: 36:20 min
[2023-08-24T09:09:18.961Z] [INFO] Finished at: 2023-08-24T05:09:18-04:00
[2023-08-24T09:09:18.961Z] [INFO] ------------------------------------------------------------------------
[2023-08-24T09:09:18.961Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.1:integration-test (default-integration-test) on project kie-drools-dmn-archetype:
[2023-08-24T09:09:18.961Z] [ERROR] Archetype IT 'integrationtestDefaults' failed: Execution failure: exit code = 1
[2023-08-24T09:09:18.961Z] [ERROR] -> [Help 1]
[2023-08-24T09:09:18.961Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.1:integration-test (default-integration-test) on project kie-drools-dmn-archetype:
[2023-08-24T09:09:18.961Z] Archetype IT 'integrationtestDefaults' failed: Execution failure: exit code = 1
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:09:18.961Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:09:18.961Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:09:18.961Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:09:18.961Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:09:18.961Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:09:18.961Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:09:18.961Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:09:18.961Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:09:18.961Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:09:18.961Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:09:18.961Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:09:18.961Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:09:18.961Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:09:18.961Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:09:18.961Z] Caused by: org.apache.maven.plugin.MojoExecutionException:
[2023-08-24T09:09:18.961Z] Archetype IT 'integrationtestDefaults' failed: Execution failure: exit code = 1
[2023-08-24T09:09:18.961Z] at org.apache.maven.archetype.mojos.IntegrationTestMojo.execute (IntegrationTestMojo.java:334)
[2023-08-24T09:09:18.961Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:09:18.961Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:09:18.962Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:09:18.962Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:09:18.962Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:09:18.962Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:09:18.962Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:09:18.962Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:09:18.962Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:09:18.962Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:09:18.962Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:09:18.962Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:09:18.962Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:09:18.962Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:09:18.962Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:09:18.962Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:09:18.962Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:09:18.962Z] [ERROR]
[2023-08-24T09:09:18.962Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-24T09:09:18.962Z] [ERROR]
[2023-08-24T09:09:18.962Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-24T09:09:18.962Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-24T09:09:18.962Z] [ERROR]
[2023-08-24T09:09:18.962Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-24T09:09:18.962Z] [ERROR] mvn -rf :kie-drools-dmn-archetype
[2023-08-24T09:09:18.962Z] [INFO] kiegroup/drools failed. Won't execute remaining commands and projects
[2023-08-24T09:09:18.962Z] [INFO] Execution summary for kiegroup/drools
[2023-08-24T09:09:18.962Z] # [BEFORE] [kiegroup/drools] export INTEGRATION_BRANCH=
[2023-08-24T09:09:18.962Z] [INFO] OK [Executed in 0.064782 ms]
[2023-08-24T09:09:18.962Z]
[2023-08-24T09:09:18.962Z] # [BEFORE] [kiegroup/drools] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-24T09:09:18.962Z] [INFO] OK [Executed in 5.93898 ms]
[2023-08-24T09:09:18.962Z]
[2023-08-24T09:09:18.962Z] # [COMMANDS] [kiegroup/drools] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-24T09:09:18.962Z] [INFO] OK [Executed in 8.277176 ms]
[2023-08-24T09:09:18.962Z]
[2023-08-24T09:09:18.962Z] # [COMMANDS] [kiegroup/drools] mvn clean install -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools@tmp/config15719869231062357293tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage dependency:tree -Dfull -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-24T09:09:18.962Z] [INFO] NOT OK [Executed in 2181392.31983 ms]
[2023-08-24T09:09:18.962Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-24T09:09:18.962Z]
[2023-08-24T09:09:18.962Z] [INFO] [AFTER] Skipped kiegroup/drools
[2023-08-24T09:09:18.962Z]
[2023-08-24T09:09:18.962Z] # Uploading artifacts
[2023-08-24T09:09:18.962Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-24T09:09:18.962Z]
[2023-08-24T09:09:18.962Z] [ERROR] Failed to execute commands for kiegroup/drools
[2023-08-24T09:09:18.962Z] [ERROR] Failed to execute mvn clean install -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools@tmp/config15719869231062357293tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage dependency:tree -Dfull -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-24T09:09:18.962Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-24T09:09:19.055Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-24T09:09:19.512Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[2023-08-24T09:09:19.513Z] find: ‘./bc/kiegroup_drools/drools-docs/node/node_modules’: No such file or directory
[2023-08-24T09:09:19.513Z] find: ‘./bc/kiegroup_drools/drools-docs/node_modules’: No such file or directory
[2023-08-24T09:09:19.767Z] + true
[Pipeline] junit
[2023-08-24T09:09:19.795Z] Recording test results
[2023-08-24T09:09:24.239Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-24T09:09:24.275Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-24T09:09:25.740Z] + rm -rf console.log
[Pipeline] sh
[2023-08-24T09:09:26.045Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1671/consoleText
[2023-08-24T09:09:26.045Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 24, 2023

(tests) - kogito-runtimes job #1637 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1637/display/redirect

Test results:

  • PASSED: 3347
  • FAILED: 3

Those are the test failures:

org.kie.kogito.dmn.DMNKogitoTest.testProfile java.lang.NullPointerException
at org.kie.dmn.core.util.DefaultDMNMessagesManager.getMessages(DefaultDMNMessagesManager.java:63)
at org.kie.dmn.core.impl.DMNModelImpl.getMessages(DMNModelImpl.java:352)
at org.kie.kogito.dmn.DMNKogitoTest.testProfile(DMNKogitoTest.java:49)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:147)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:127)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:90)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:55)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:102)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86)
at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86)
at org.apache.maven.surefire.junitplatform.LazyLauncher.execute(LazyLauncher.java:56)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(JUnitPlatformProvider.java:184)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:148)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:122)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:385)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162)
at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:507)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:495)
org.jbpm.bpmn2.ActivityTest.testDMNBusinessRuleTask java.lang.NullPointerException
at org.kie.dmn.core.assembler.DMNAssemblerService.compileResourceToModel(DMNAssemblerService.java:192)
at org.kie.dmn.core.assembler.DMNAssemblerService.internalAddResource(DMNAssemblerService.java:150)
at org.kie.dmn.core.assembler.DMNAssemblerService.addResourcesAfterRules(DMNAssemblerService.java:125)
at org.kie.internal.services.KieAssemblersImpl.addResourcesAfterRules(KieAssemblersImpl.java:84)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.buildAssemblerResourcesAfterRules(CompositeKnowledgeBuilderImpl.java:201)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:119)
at org.drools.compiler.builder.impl.CompositeKnowledgeBuilderImpl.build(CompositeKnowledgeBuilderImpl.java:104)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:270)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.buildKnowledgePackages(AbstractKieProject.java:216)
at org.drools.compiler.kie.builder.impl.AbstractKieProject.verify(AbstractKieProject.java:80)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildKieProject(KieBuilderImpl.java:282)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:248)
at org.drools.compiler.kie.builder.impl.KieBuilderImpl.buildAll(KieBuilderImpl.java:195)
at org.jbpm.bpmn2.JbpmBpmn2TestCase.createKnowledgeBaseFromResources(JbpmBpmn2TestCase.java:145)
at org.jbpm.bpmn2.JbpmBpmn2TestCase.createKnowledgeBaseWithoutDumper(JbpmBpmn2TestCase.java:128)
at org.jbpm.bpmn2.JbpmBpmn2TestCase.createKnowledgeSession(JbpmBpmn2TestCase.java:178)
at org.jbpm.bpmn2.JbpmBpmn2TestCase.createKogitoProcessRuntime(JbpmBpmn2TestCase.java:115)
at org.jbpm.bpmn2.ActivityTest.testDMNBusinessRuleTask(ActivityTest.java:1346)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:727)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.SameThreadTimeoutInvocation.proceed(SameThreadTimeoutInvocation.java:45)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
at org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:217)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:213)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:138)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:68)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:147)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:127)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:90)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:55)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:102)
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:54)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86)
at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86)
at org.apache.maven.surefire.junitplatform.LazyLauncher.execute(LazyLauncher.java:56)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.lambda$execute$1(JUnitPlatformProvider.java:191)
at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(JUnitPlatformProvider.java:186)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:148)
at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:118)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:385)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162)
at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:507)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:495)
org.kie.kogito.quarkus.serverless.workflow.deployment.livereload.LiveReloadProcessorTest.testGrpc 1 expectation failed.
Expected status code <201> but was <500>.

See console log:

Console Logs [2023-08-24T09:24:30.212Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.039 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.404 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.052 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.064 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.932 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.318 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.111 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 4.061 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 2.009 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 6.132 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.771 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.111 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 9.444 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.018 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.120 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.865 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.312 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.112 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.283 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 55.166 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.344 s]
[2023-08-24T09:24:30.212Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:16 min]
[2023-08-24T09:24:30.212Z] [INFO] ------------------------------------------------------------------------
[2023-08-24T09:24:30.212Z] [INFO] BUILD FAILURE
[2023-08-24T09:24:30.212Z] [INFO] ------------------------------------------------------------------------
[2023-08-24T09:24:30.212Z] [INFO] Total time: 45:13 min
[2023-08-24T09:24:30.212Z] [INFO] Finished at: 2023-08-24T05:24:29-04:00
[2023-08-24T09:24:30.212Z] [INFO] ------------------------------------------------------------------------
[2023-08-24T09:24:30.212Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-24T09:24:30.212Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:24:30.212Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:24:30.212Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:24:30.212Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:24:30.212Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:24:30.212Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:24:30.212Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:24:30.212Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:24:30.213Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:24:30.213Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-24T09:24:30.213Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:24:30.213Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:24:30.213Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-24T09:24:30.213Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:24:30.213Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:24:30.213Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-24T09:24:30.213Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:24:30.213Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:24:30.213Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:24:30.213Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:24:30.213Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:24:30.213Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:24:30.213Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:24:30.213Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-24T09:24:30.213Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-24T09:24:30.213Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-24T09:24:30.213Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-24T09:24:30.213Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-24T09:24:30.213Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-24T09:24:30.213Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-24T09:24:30.214Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:24:30.214Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:24:30.214Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:24:30.214Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:24:30.214Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:24:30.214Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:24:30.214Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:24:30.214Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:24:30.214Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:24:30.214Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:24:30.214Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:24:30.214Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-24T09:24:30.214Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-24T09:24:30.214Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-24T09:24:30.214Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-24T09:24:30.214Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-24T09:24:30.214Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-24T09:24:30.214Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-24T09:24:30.214Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-24T09:24:30.214Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-24T09:24:30.214Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-24T09:24:30.214Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-24T09:24:30.214Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-24T09:24:30.214Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-24T09:24:30.214Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-24T09:24:30.214Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-24T09:24:30.214Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-24T09:24:30.214Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-24T09:24:30.214Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-24T09:24:30.214Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-24T09:24:30.214Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-24T09:24:30.214Z] [ERROR]
[2023-08-24T09:24:30.214Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-24T09:24:30.214Z] [ERROR]
[2023-08-24T09:24:30.214Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-24T09:24:30.214Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-24T09:24:30.214Z] [ERROR]
[2023-08-24T09:24:30.214Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-24T09:24:30.214Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-24T09:24:30.218Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-24T09:24:30.218Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-24T09:24:30.218Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-24T09:24:30.218Z] [INFO] OK [Executed in 0.232526 ms]
[2023-08-24T09:24:30.218Z]
[2023-08-24T09:24:30.218Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-24T09:24:30.218Z] [INFO] OK [Executed in 9.154292 ms]
[2023-08-24T09:24:30.218Z]
[2023-08-24T09:24:30.218Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-24T09:24:30.218Z] [INFO] OK [Executed in 10.210372 ms]
[2023-08-24T09:24:30.218Z]
[2023-08-24T09:24:30.219Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config9533369790711349824tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-24T09:24:30.219Z] [INFO] NOT OK [Executed in 2714811.878805 ms]
[2023-08-24T09:24:30.219Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-24T09:24:30.219Z]
[2023-08-24T09:24:30.219Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-24T09:24:30.219Z]
[2023-08-24T09:24:30.219Z] # Uploading artifacts
[2023-08-24T09:24:30.219Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-24T09:24:30.219Z]
[2023-08-24T09:24:30.219Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-24T09:24:30.219Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config9533369790711349824tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-24T09:24:30.219Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-24T09:24:30.300Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-24T09:24:30.780Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-24T09:24:30.809Z] Recording test results
[2023-08-24T09:24:33.982Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-24T09:24:34.004Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-24T09:24:35.475Z] + rm -rf console.log
[Pipeline] sh
[2023-08-24T09:24:35.783Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1637/consoleText
[2023-08-24T09:24:35.783Z] + tail -n 300

@tarilabs
Copy link
Member

wrt https://github.com/kiegroup/drools/pull/5461#issuecomment-1691324022 it seems to me the "misalignment" I tried to describe in https://github.com/kiegroup/drools/pull/5461#pullrequestreview-1593135652 seems to cause failure of the archetype integration tests.

Also the failures in https://github.com/kiegroup/drools/pull/5461#issuecomment-1691257534 seems suspicious and worth a double-check, iirc they do invoke DMN from PMML.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 24, 2023

(tests) - kogito-apps job #1653 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-apps -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-apps/1653/display/redirect

Test results:

  • PASSED: 2753
  • FAILED: 23

Those are the test failures:

org.kie.kogito.jitexecutor.dmn.JITDMNServiceImplTest.testModelEvaluation java.lang.IllegalStateException: Unable to compile DMN model for the resource ReaderResource[resource=java.io.StringReader@3dfef314,encoding=UTF-8]
org.kie.kogito.jitexecutor.dmn.api.DMNValidatorResourceTest.testOverlap 1 expectation failed.
Response body doesn't match expectation.
Expected: a string containing "Overlap detected"
Actual: [{"severity":"WARN","message":"Variable named 'DTI' is missing its type reference on node 'DTI'","messageType":"MISSING_TYPE_REF","sourceId":"_7FF18790-80C8-4124-9BFB-93383CE6A50F","path":null,"level":"WARNING"},{"severity":"ERROR","message":"Validation of the DMN Model cannot be performed because of some runtime exception 'null'.","messageType":"FAILED_VALIDATION","sourceId":null,"path":null,"level":"ERROR"}]
org.kie.kogito.jitexecutor.dmn.api.DMNValidatorResourceTest.test 1 expectation failed.
Response body doesn't match expectation.
Expected: a string containing "Decision Table Analysis of table 'Preapproval' finished with no messages to be reported."
Actual: [{"severity":"ERROR","message":"Validation of the DMN Model cannot be performed because of some runtime exception 'null'.","messageType":"FAILED_VALIDATION","sourceId":null,"path":null,"level":"ERROR"}]
org.kie.kogito.jitexecutor.dmn.api.JITDMNResourceTest.testjitExplainabilityEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.JITDMNResourceTest.testjitdmnResultEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.JITDMNResourceTest.testjitEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.MultipleModelsTest.testjitdmnResultEndpointCH11 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.MultipleModelsTest.testjitExplainabilityEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.MultipleModelsTest.testValidation expected: <1> but was: <2>
org.kie.kogito.jitexecutor.dmn.api.MultipleModelsTest.testjitEndpointCH11 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.MultipleModelsTest.testjitdmnResultEndpointCH11_withErrors 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.dmn.api.SchemaResourceTest.test 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.DMNValidatorResourceIT.testOverlap 1 expectation failed.
Response body doesn't match expectation.
Expected: a string containing "Overlap detected"
Actual: [{"severity":"WARN","message":"Variable named 'DTI' is missing its type reference on node 'DTI'","messageType":"MISSING_TYPE_REF","sourceId":"_7FF18790-80C8-4124-9BFB-93383CE6A50F","path":null,"level":"WARNING"},{"severity":"ERROR","message":"Validation of the DMN Model cannot be performed because of some runtime exception 'null'.","messageType":"FAILED_VALIDATION","sourceId":null,"path":null,"level":"ERROR"}]
org.kie.kogito.jitexecutor.runner.DMNValidatorResourceIT.test 1 expectation failed.
Response body doesn't match expectation.
Expected: a string containing "Decision Table Analysis of table 'Preapproval' finished with no messages to be reported."
Actual: [{"severity":"ERROR","message":"Validation of the DMN Model cannot be performed because of some runtime exception 'null'.","messageType":"FAILED_VALIDATION","sourceId":null,"path":null,"level":"ERROR"}]
org.kie.kogito.jitexecutor.runner.JITDMNResourceIT.testjitExplainabilityEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.JITDMNResourceIT.testjitdmnResultEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.JITDMNResourceIT.testjitEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.MultipleModelsIT.testjitdmnResultEndpointCH11 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.MultipleModelsIT.testjitExplainabilityEndpoint 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.MultipleModelsIT.testValidation expected: <1> but was: <2>
org.kie.kogito.jitexecutor.runner.MultipleModelsIT.testjitEndpointCH11 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.MultipleModelsIT.testjitdmnResultEndpointCH11_withErrors 1 expectation failed.
Expected status code <200> but was <500>.
org.kie.kogito.jitexecutor.runner.SchemaResourceIT.test 1 expectation failed.
Expected status code <200> but was <500>.

@jomarko jomarko marked this pull request as draft August 25, 2023 10:25
@jomarko
Copy link
Contributor Author

jomarko commented Aug 25, 2023

Converted this to draft. I removed filtering and started to update tests.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 25, 2023

(tests) - kogito-runtimes job #1649 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1649/display/redirect

Test results:

  • PASSED: 3350
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-25T12:06:43.464Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.034 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.365 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.043 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.056 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.696 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.314 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.098 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 3.971 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 2.173 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.475 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.923 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.146 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.900 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.016 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.115 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.579 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.244 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.121 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.267 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 55.862 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.155 s]
[2023-08-25T12:06:43.464Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:21 min]
[2023-08-25T12:06:43.464Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T12:06:43.464Z] [INFO] BUILD FAILURE
[2023-08-25T12:06:43.464Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T12:06:43.464Z] [INFO] Total time: 45:16 min
[2023-08-25T12:06:43.464Z] [INFO] Finished at: 2023-08-25T08:06:42-04:00
[2023-08-25T12:06:43.464Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T12:06:43.464Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-25T12:06:43.464Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T12:06:43.464Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T12:06:43.464Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T12:06:43.464Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T12:06:43.464Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T12:06:43.464Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T12:06:43.464Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T12:06:43.464Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T12:06:43.464Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T12:06:43.464Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T12:06:43.464Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T12:06:43.464Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T12:06:43.464Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T12:06:43.464Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T12:06:43.465Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T12:06:43.465Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T12:06:43.465Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T12:06:43.465Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T12:06:43.465Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T12:06:43.465Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T12:06:43.465Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T12:06:43.465Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T12:06:43.465Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T12:06:43.465Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T12:06:43.465Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T12:06:43.465Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T12:06:43.465Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T12:06:43.465Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T12:06:43.465Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T12:06:43.465Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T12:06:43.465Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T12:06:43.465Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T12:06:43.465Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T12:06:43.465Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T12:06:43.465Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T12:06:43.465Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T12:06:43.465Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T12:06:43.465Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T12:06:43.465Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T12:06:43.465Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T12:06:43.465Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T12:06:43.465Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-25T12:06:43.465Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T12:06:43.465Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T12:06:43.466Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T12:06:43.466Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T12:06:43.466Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T12:06:43.466Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T12:06:43.466Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T12:06:43.466Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T12:06:43.466Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T12:06:43.466Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T12:06:43.466Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T12:06:43.466Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T12:06:43.466Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T12:06:43.466Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T12:06:43.466Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T12:06:43.466Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T12:06:43.466Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T12:06:43.466Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T12:06:43.466Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T12:06:43.466Z] [ERROR]
[2023-08-25T12:06:43.466Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-25T12:06:43.466Z] [ERROR]
[2023-08-25T12:06:43.466Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-25T12:06:43.466Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-25T12:06:43.466Z] [ERROR]
[2023-08-25T12:06:43.466Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-25T12:06:43.466Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-25T12:06:43.720Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-25T12:06:43.720Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-25T12:06:43.720Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-25T12:06:43.720Z] [INFO] OK [Executed in 0.226405 ms]
[2023-08-25T12:06:43.720Z]
[2023-08-25T12:06:43.720Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-25T12:06:43.720Z] [INFO] OK [Executed in 8.518041 ms]
[2023-08-25T12:06:43.720Z]
[2023-08-25T12:06:43.720Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-25T12:06:43.720Z] [INFO] OK [Executed in 6.871614 ms]
[2023-08-25T12:06:43.720Z]
[2023-08-25T12:06:43.720Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config11182118426924762109tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-25T12:06:43.720Z] [INFO] NOT OK [Executed in 2717469.492761 ms]
[2023-08-25T12:06:43.720Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-25T12:06:43.720Z]
[2023-08-25T12:06:43.720Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-25T12:06:43.720Z]
[2023-08-25T12:06:43.720Z] # Uploading artifacts
[2023-08-25T12:06:43.720Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-25T12:06:43.720Z]
[2023-08-25T12:06:43.720Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-25T12:06:43.720Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config11182118426924762109tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-25T12:06:43.720Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-25T12:06:43.804Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-25T12:06:44.239Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-25T12:06:44.511Z] Recording test results
[2023-08-25T12:06:47.912Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-25T12:06:47.933Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-25T12:06:49.488Z] + rm -rf console.log
[Pipeline] sh
[2023-08-25T12:06:49.785Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1649/consoleText
[2023-08-25T12:06:49.785Z] + tail -n 300

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 25, 2023

(tests) - drools job #1683 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT= -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/drools -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.drools/1683/display/redirect

Test results:

  • PASSED: 21609
  • FAILED: 98

Those are the test failures:

org.kie.dmn.legacy.tests.validation.v1_1.ValidatorBusinessKnowledgeModelTest.testBKM_MISSING_EXPR_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorBusinessKnowledgeModelTest.testBKM_MISSING_VAR_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorBusinessKnowledgeModelTest.testBKM_MISSING_VAR_ReaderInput [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorBusinessKnowledgeModelTest.testBKM_MISSING_VAR_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Business Knowledge Model node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorBusinessKnowledgeModelTest.testBKM_MISSING_EXPR_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorBusinessKnowledgeModelTest.testBKM_MISSING_EXPR_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/businessknowledgemodel/BKM_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDMNElementReferenceTest.testELEMREF_NOHASH_ReaderInput [Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: The 'href' reference on node 'simpletable-U' requires the use of the anchor syntax (The 'href' attribute requires the use of anchor syntax) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required input 'ns1:www.google.com' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 3 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: The 'href' reference on node 'simpletable-U' requires the use of the anchor syntax (The 'href' attribute requires the use of anchor syntax) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required input 'ns1:www.google.com' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDMNElementReferenceTest.testELEMREF_NOHASH_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: The 'href' reference on node 'simpletable-U' requires the use of the anchor syntax (The 'href' attribute requires the use of anchor syntax) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required input 'ns1:www.google.com' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 3 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: The 'href' reference on node 'simpletable-U' requires the use of the anchor syntax (The 'href' attribute requires the use of anchor syntax) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required input 'ns1:www.google.com' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDMNElementReferenceTest.testELEMREF_NOHASH_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=25, column=-1
text=DMN: The 'href' reference on node 'simpletable-U' requires the use of the anchor syntax (The 'href' attribute requires the use of anchor syntax) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=25, column=-1
text=DMN: Required input 'ns1:www.google.com' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 3 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=25, column=-1
text=DMN: The 'href' reference on node 'simpletable-U' requires the use of the anchor syntax (The 'href' attribute requires the use of anchor syntax) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=25, column=-1
text=DMN: Required input 'ns1:www.google.com' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/dmnelementref/ELEMREF_NOHASH.dmn, line=22, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTableTest.testDTABLE_EMPTY_ENTRY_ReaderInput [Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTableTest.testDTABLE_EMPTY_ENTRY_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_EMPTY_ENTRY.dmn, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTableTest.testDTABLE_EMPTY_ENTRY_DefintionsInput [Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=59, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=76, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTableTest.testDTABLE_MULTIPLEOUT_NAME_ReaderInput [Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
Expected size: 5 but was: 6 in:
[Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTableTest.testDTABLE_MULTIPLEOUT_NAME_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
Expected size: 5 but was: 6 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTableTest.testDTABLE_MULTIPLEOUT_NAME_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
Expected size: 5 but was: 6 in:
[Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=52, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_EXPR_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_EXPR.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_VAR_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VAR.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_EXPR_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_VARbis_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VARbis.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VARbis.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VARbis.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/decision/DECISION_MISSING_VARbis.dmn, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_VARbis_ReaderInput [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_VARbis_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_VAR_ReaderInput [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_VAR_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Decision node 'Greeting Message' is missing the variable declaration (DMN id: d_GreetingMessage, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorDecisionTest.testDECISION_MISSING_EXPR_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'Greeting Message' (DMN id: d_GreetingMessage, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInputDataTest.testINPUT_MISSING_VAR_ReaderInput [Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInputDataTest.testINPUT_MISSING_VAR_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/inputdata/INPUTDATA_MISSING_VAR.dmn, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/inputdata/INPUTDATA_MISSING_VAR.dmn, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/inputdata/INPUTDATA_MISSING_VAR.dmn, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/inputdata/INPUTDATA_MISSING_VAR.dmn, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorInputDataTest.testINPUT_MISSING_VAR_DefintionsInput [Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=33, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_REQ_DECISION_NOT_BKM_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' on node '[unnamed TKnowledgeRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_REQ_DECISION_NOT_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgerequirement/KNOWREQ_MISSING_BKM.dmn, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeRequirementTest.testKNOWREQ_MISSING_BKM_ReaderInput [Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required dependency 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Required Business Knowledge Model 'someKnowledge1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=24, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeSourceTest.testKNOW_SOURCE_OWNER_NOT_ORG_UNIT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'owner1' (DMN id: owner1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required dependency 'owner1' on node 'knowSource1' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]]
Expected size: 3 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'owner1' (DMN id: owner1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required dependency 'owner1' on node 'knowSource1' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeSourceTest.testKNOW_SOURCE_OWNER_NOT_ORG_UNIT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'owner1' (DMN id: owner1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=25, column=-1
text=DMN: Required dependency 'owner1' on node 'knowSource1' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]]
Expected size: 3 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'owner1' (DMN id: owner1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=25, column=-1
text=DMN: Required dependency 'owner1' on node 'knowSource1' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/knowledgesource/KNOW_SOURCE_OWNER_NOT_ORG_UNIT.dmn, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorKnowledgeSourceTest.testKNOW_SOURCE_OWNER_NOT_ORG_UNIT_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'owner1' (DMN id: owner1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required dependency 'owner1' on node 'knowSource1' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]]
Expected size: 3 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'owner1' (DMN id: owner1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Required dependency 'owner1' on node 'knowSource1' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Decision node 'owner1' is missing the variable declaration (DMN id: owner1, A variable declaration is missing) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTest.testITEMDEF_NOT_UNIQUE [Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee, The referenced item definition or item component is duplicated) ]
Message [id=0, level=ERROR, path=null, line=29, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee_2, The referenced item definition or item component is duplicated) ]
Message [id=0, level=ERROR, path=null, line=29, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee_2, The referenced item definition or item component is duplicated) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=24, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee, The referenced item definition or item component is duplicated) ],
Message [id=0, level=ERROR, path=null, line=29, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee_2, The referenced item definition or item component is duplicated) ],
Message [id=0, level=ERROR, path=null, line=29, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee_2, The referenced item definition or item component is duplicated) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTest.testNAME_INVALID_empty_name [Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.4: Attribute 'name' must appear on element 'variable'. (DMN model failed XML schema validation) ]
Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Variable name 'null' does not match the Decision node name 'Decision Logic 1' (DMN id: _c7523fa1-22af-4673-8990-fdf920b35667, A variable name does not match the node it belongs to) ]
Message [id=0, level=ERROR, path=null, line=23, column=-1
text=DMN: Invalid name 'null': Name cannot be null or empty (DMN id: _b1e4588e-9ce1-4474-8e4e-48dbcdb7524b, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=26, column=-1
text=DMN: Invalid name '': Name cannot be null or empty (DMN id: _5e43b55c-888e-443c-b1b9-80e4aa6746bd, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=26, column=-1
text=DMN: Invalid name '': Name cannot be null or empty (DMN id: _5e43b55c-888e-443c-b1b9-80e4aa6746bd, The listed name is not a valid FEEL identifier) ]]
Expected size: 4 but was: 5 in:
[Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.4: Attribute 'name' must appear on element 'variable'. (DMN model failed XML schema validation) ],
Message [id=0, level=ERROR, path=null, line=22, column=-1
text=DMN: Variable name 'null' does not match the Decision node name 'Decision Logic 1' (DMN id: _c7523fa1-22af-4673-8990-fdf920b35667, A variable name does not match the node it belongs to) ],
Message [id=0, level=ERROR, path=null, line=23, column=-1
text=DMN: Invalid name 'null': Name cannot be null or empty (DMN id: _b1e4588e-9ce1-4474-8e4e-48dbcdb7524b, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=26, column=-1
text=DMN: Invalid name '': Name cannot be null or empty (DMN id: _5e43b55c-888e-443c-b1b9-80e4aa6746bd, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=26, column=-1
text=DMN: Invalid name '': Name cannot be null or empty (DMN id: _5e43b55c-888e-443c-b1b9-80e4aa6746bd, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTest.testVALIDATION [Message [id=0, level=WARNING, path=null, line=268, column=-1
text=DMN: Variable named 'LLPA' is missing its type reference on node 'LLPA' (DMN id: _ed9c9678-f403-4338-8354-cef981e6ff26, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=252, column=-1
text=DMN: Invalid name 'Best Rate %': Name cannot contain the character '%' (DMN id: _f595f4ae-02de-48d1-8cf4-9eb5407abc20, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=252, column=-1
text=DMN: Invalid name 'Best Rate %': Name cannot contain the character '%' (DMN id: _f595f4ae-02de-48d1-8cf4-9eb5407abc20, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=263, column=-1
text=DMN: No expression defined for name 'payment' on node 'payment' (DMN id: _2c17bc83-3533-4e1d-a31f-430acf27069e, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=178, column=-1
text=DMN: Error compiling FEEL expression '(Loan Payment.amount+Borrower.monthlyOtherDebtPmt)/Borrower.monthlyIncome' for name 'DTI' on node 'DTI': Unknown variable 'Loan Payment.amount' (DMN id: _103a6a46-063b-40fb-a659-3964d49bcfa7, Error compiling the referenced FEEL expression) ]
Message [id=0, level=ERROR, path=null, line=202, column=-1
text=DMN: Error compiling FEEL expression 'LLPA*.00125 + Best Rate' for name 'adjustedRate' on node 'Loan Payment': Unknown variable 'Best Rate' (DMN id: _ee9ad659-b997-42d2-9860-02b697cd30a1, Error compiling the referenced FEEL expression) ]
Message [id=0, level=WARNING, path=null, line=268, column=-1
text=DMN: Variable named 'LLPA' is missing its type reference on node 'LLPA' (DMN id: _ed9c9678-f403-4338-8354-cef981e6ff26, Type ref not defined) ]]
Expected size: 5 but was: 7 in:
[Message [id=0, level=WARNING, path=null, line=268, column=-1
text=DMN: Variable named 'LLPA' is missing its type reference on node 'LLPA' (DMN id: _ed9c9678-f403-4338-8354-cef981e6ff26, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=252, column=-1
text=DMN: Invalid name 'Best Rate %': Name cannot contain the character '%' (DMN id: _f595f4ae-02de-48d1-8cf4-9eb5407abc20, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=252, column=-1
text=DMN: Invalid name 'Best Rate %': Name cannot contain the character '%' (DMN id: _f595f4ae-02de-48d1-8cf4-9eb5407abc20, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=263, column=-1
text=DMN: No expression defined for name 'payment' on node 'payment' (DMN id: _2c17bc83-3533-4e1d-a31f-430acf27069e, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=178, column=-1
text=DMN: Error compiling FEEL expression '(Loan Payment.amount+Borrower.monthlyOtherDebtPmt)/Borrower.monthlyIncome' for name 'DTI' on node 'DTI': Unknown variable 'Loan Payment.amount' (DMN id: _103a6a46-063b-40fb-a659-3964d49bcfa7, Error compiling the referenced FEEL expression) ],
Message [id=0, level=ERROR, path=null, line=202, column=-1
text=DMN: Error compiling FEEL expression 'LLPA*.00125 + Best Rate' for name 'adjustedRate' on node 'Loan Payment': Unknown variable 'Best Rate' (DMN id: _ee9ad659-b997-42d2-9860-02b697cd30a1, Error compiling the referenced FEEL expression) ],
Message [id=0, level=WARNING, path=null, line=268, column=-1
text=DMN: Variable named 'LLPA' is missing its type reference on node 'LLPA' (DMN id: _ed9c9678-f403-4338-8354-cef981e6ff26, Type ref not defined) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTypeRefTest.testTYPEREF_NOT_FEEL_NOT_DEF_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTypeRefTest.testTYPEREF_NO_NS_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 1 but was: 2 in:
[Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTypeRefTest.testTYPEREF_NOT_FEEL_NOT_DEF_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=25, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=25, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTypeRefTest.testTYPEREF_NO_NS_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NO_NS.dmn, line=0, column=0
text=DMN: Failed XML validation of DMN file: UndeclaredPrefix: Cannot resolve 'nsUnexisting:asd' as a QName: the prefix 'nsUnexisting' is not declared. (DMN model failed XML schema validation) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NO_NS.dmn, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NO_NS.dmn, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NO_NS.dmn, line=0, column=0
text=DMN: Failed XML validation of DMN file: UndeclaredPrefix: Cannot resolve 'nsUnexisting:asd' as a QName: the prefix 'nsUnexisting' is not declared. (DMN model failed XML schema validation) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NO_NS.dmn, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-legacy-tests/target/test-classes/org/kie/dmn/legacy/tests/validation/v1_1/typeref/TYPEREF_NO_NS.dmn, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTypeRefTest.testTYPEREF_NO_NS_ReaderInput [Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: UndeclaredPrefix: Cannot resolve 'nsUnexisting:asd' as a QName: the prefix 'nsUnexisting' is not declared. (DMN model failed XML schema validation) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: UndeclaredPrefix: Cannot resolve 'nsUnexisting:asd' as a QName: the prefix 'nsUnexisting' is not declared. (DMN model failed XML schema validation) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Unable to resolve type reference 'asd' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.legacy.tests.validation.v1_1.ValidatorTypeRefTest.testTYPEREF_NOT_FEEL_NOT_DEF_ReaderInput [Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=32, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTableTest.testDTABLE_EMPTY_ENTRY_ReaderInput [Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorDecisionTableTest.testDTABLE_EMPTY_ENTRY_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_EMPTY_ENTRY.dmn, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorDecisionTableTest.testDTABLE_EMPTY_ENTRY_DefintionsInput [Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=64, column=-1
text=DMN: Missing test on decision table input entry (row 1, column 2) on node 'simpletable-U' (DMN id: _7f03803d-2636-40ab-8346-7fd7f38ab695-1, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=81, column=-1
text=DMN: Missing test on decision table input entry (row 2, column 3) on node 'simpletable-U' (DMN id: _887acecd-40fc-42da-9443-eeba476f5516-2, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorDecisionTableTest.testDTABLE_MULTIPLEOUT_NAME_ReaderInput [Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
Expected size: 5 but was: 6 in:
[Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.validation.ValidatorDecisionTableTest.testDTABLE_MULTIPLEOUT_NAME_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
Expected size: 5 but was: 6 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/DTABLE_MULTIPLEOUTPUT_WRONG_OUTPUT.dmn, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.validation.ValidatorDecisionTableTest.testDTABLE_MULTIPLEOUT_NAME_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ]
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
Expected size: 5 but was: 6 in:
[Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a name for each output (DMN id: _oApprovalStatus2, The referenced element requires a name) ],
Message [id=0, level=ERROR, path=null, line=57, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=62, column=-1
text=DMN: Decision table with multiple outputs on node '0004-simpletable-U' requires a type reference for each output (DMN id: _oApprovalStatus2, Type ref not defined) ],
Message [id=0, level=ERROR, path=null, line=25, column=-1
text=DMN: Invalid name '0004-simpletable-U': Name cannot start with the sequence of characters '0004' (DMN id: _0004-simpletable-U, The listed name is not a valid FEEL identifier) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MISMATCH_VAR_ReaderInput [Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Variable name 'Greeting Messageee' does not match the Decision node name 'Greeting Message' (DMN id: d_GreetingMessage, A variable name does not match the node it belongs to) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Variable name 'Greeting Messageee' does not match the Decision node name 'Greeting Message' (DMN id: d_GreetingMessage, A variable name does not match the node it belongs to) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MULTIPLE_EXPRESSIONS_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_MULTIPLE_EXPRESSIONS.dmn, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.2.4.d: Invalid content was found starting with element 'semantic:literalExpression'. No child element is expected at this point. (DMN model failed XML schema validation) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_MULTIPLE_EXPRESSIONS.dmn, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.2.4.d: Invalid content was found starting with element 'semantic:literalExpression'. No child element is expected at this point. (DMN model failed XML schema validation) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_CYCLIC_DEPENDENCY_SELF_REFERENCE_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Cyclic dependency detected for node 'self' (DMN id: d_self, The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Cyclic dependency detected for node 'self' (DMN id: d_self, The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_CYCLIC_DEPENDENCY_SELF_REFERENCE_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_CYCLIC_DEPENDENCY_SELF_REFERENCE.dmn, line=27, column=-1
text=DMN: Cyclic dependency detected for node 'self' (DMN id: d_self, The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_CYCLIC_DEPENDENCY_SELF_REFERENCE.dmn, line=27, column=-1
text=DMN: Cyclic dependency detected for node 'self' (DMN id: d_self, The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_CYCLIC_DEPENDENCY_SELF_REFERENCE_ReaderInput [Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Cyclic dependency detected for node 'self' (DMN id: d_self, The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Cyclic dependency detected for node 'self' (DMN id: d_self, The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MISSING_REQ_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'i_FullName' not found on node 'Greeting Message' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'i_FullName' not found on node 'Greeting Message' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDTCollectOperatorsMultipleOutputs [Message [id=0, level=WARNING, path=null, line=21, column=-1
text=DMN: Decision Table 'Decision-1' is using Collect with Operator for compound outputs; this is partially supported beyond the specification requirements. (DMN id: _73ABC810-A067-4C96-81EF-A2D216A3CC6B, Invalid FEEL syntax on the referenced expression) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=WARNING, path=null, line=21, column=-1
text=DMN: Decision Table 'Decision-1' is using Collect with Operator for compound outputs; this is partially supported beyond the specification requirements. (DMN id: _73ABC810-A067-4C96-81EF-A2D216A3CC6B, Invalid FEEL syntax on the referenced expression) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MISSING_REQ_ReaderInput [Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'i_FullName' not found on node 'Greeting Message' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'i_FullName' not found on node 'Greeting Message' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MULTIPLE_EXPRESSIONS_ReaderInput [Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.2.4.d: Invalid content was found starting with element 'semantic:literalExpression'. No child element is expected at this point. (DMN model failed XML schema validation) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.2.4.d: Invalid content was found starting with element 'semantic:literalExpression'. No child element is expected at this point. (DMN model failed XML schema validation) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MISMATCH_VAR_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Variable name 'Greeting Messageee' does not match the Decision node name 'Greeting Message' (DMN id: d_GreetingMessage, A variable name does not match the node it belongs to) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Variable name 'Greeting Messageee' does not match the Decision node name 'Greeting Message' (DMN id: d_GreetingMessage, A variable name does not match the node it belongs to) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MISSING_REQ_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_MISSING_REQ.dmn, line=30, column=-1
text=DMN: Required dependency 'i_FullName' not found on node 'Greeting Message' (The referenced node was not found) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_MISSING_REQ.dmn, line=30, column=-1
text=DMN: Required dependency 'i_FullName' not found on node 'Greeting Message' (The referenced node was not found) ]]
org.kie.dmn.validation.ValidatorDecisionTest.testDECISION_MISMATCH_VAR_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_MISMATCH_VAR.dmn, line=27, column=-1
text=DMN: Variable name 'Greeting Messageee' does not match the Decision node name 'Greeting Message' (DMN id: d_GreetingMessage, A variable name does not match the node it belongs to) ]]
Expected size: 2 but was: 1 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/decision/DECISION_MISMATCH_VAR.dmn, line=27, column=-1
text=DMN: Variable name 'Greeting Messageee' does not match the Decision node name 'Greeting Message' (DMN id: d_GreetingMessage, A variable name does not match the node it belongs to) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_INPUT.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_INPUT_NOT_INPUTDATA.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_MISSING_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_ReaderInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_INPUT_NOT_INPUTDATA_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency 'someInput1' on node '[unnamed TInformationRequirement]' does not match the node type (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input 'someInput1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_MISSING_INPUT_DefinitionsInput [Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required dependency '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=null, line=30, column=-1
text=DMN: Required input '___Age' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=null, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInformationRequirementTest.testINFOREQ_DECISION_NOT_DECISION_FileInput [Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ]
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
Expected size: 2 but was: 4 in:
[Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required dependency 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=30, column=-1
text=DMN: Required Decision 'someDecision1' not found on node 'simpletable-U' (The referenced node was not found) ],
Message [id=0, level=WARNING, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/informationrequirement/INFOREQ_DECISION_NOT_DECISION.dmn, line=27, column=-1
text=DMN: Missing expression for Decision Node 'simpletable-U' (DMN id: _0004-simpletable-U, No decision logic was defined for the node or variable) ]]
org.kie.dmn.validation.ValidatorInputDataTest.testINPUT_MISSING_VAR_ReaderInput Message [id=0, level=ERROR, path=null, line=36, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=36, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
org.kie.dmn.validation.ValidatorInputDataTest.testINPUT_MISSING_VAR_FileInput Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/inputdata/INPUTDATA_MISSING_VAR.dmn, line=36, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/inputdata/INPUTDATA_MISSING_VAR.dmn, line=36, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
org.kie.dmn.validation.ValidatorInputDataTest.testINPUT_MISSING_VAR_DefintionsInput Message [id=0, level=ERROR, path=null, line=36, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
Message [id=0, level=ERROR, path=null, line=36, column=-1
text=DMN: Input Data node 'Full Name' is missing the variable declaration (DMN id: i_FullName, A variable declaration is missing) ]
org.kie.dmn.validation.ValidatorTest.testITEMDEF_NOT_UNIQUE Message [id=0, level=ERROR, path=null, line=27, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee, The referenced item definition or item component is duplicated) ]
Message [id=0, level=ERROR, path=null, line=34, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee_2, The referenced item definition or item component is duplicated) ]
Message [id=0, level=ERROR, path=null, line=34, column=-1
text=DMN: Item Definition 'tEmployee' is duplicated in the model (DMN id: tEmployee_2, The referenced item definition or item component is duplicated) ]
org.kie.dmn.validation.ValidatorTest.testNAME_INVALID_empty_name Message [id=0, level=ERROR, path=null, line=0, column=0
text=DMN: Failed XML validation of DMN file: cvc-complex-type.4: Attribute 'name' must appear on element 'semantic:variable'. (DMN model failed XML schema validation) ]
Message [id=0, level=ERROR, path=null, line=28, column=-1
text=DMN: Variable name 'null' does not match the Decision node name 'Decision Logic 1' (DMN id: _c7523fa1-22af-4673-8990-fdf920b35667, A variable name does not match the node it belongs to) ]
Message [id=0, level=ERROR, path=null, line=29, column=-1
text=DMN: Invalid name 'null': Name cannot be null or empty (DMN id: _b1e4588e-9ce1-4474-8e4e-48dbcdb7524b, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=34, column=-1
text=DMN: Invalid name '': Name cannot be null or empty (DMN id: _5e43b55c-888e-443c-b1b9-80e4aa6746bd, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=34, column=-1
text=DMN: Invalid name '': Name cannot be null or empty (DMN id: _5e43b55c-888e-443c-b1b9-80e4aa6746bd, The listed name is not a valid FEEL identifier) ]
org.kie.dmn.validation.ValidatorTest.testDMNv1_3_ch11example1 Message [id=0, level=WARNING, path=null, line=176, column=-1
text=DMN: Missing expression for Decision Node 'Adjudication' (DMN id: _4bd33d4a-741b-444a-968b-64e1841211e7, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=1866, column=-1
text=DMN: Invalid name 'Auto-adjudication rate 90%': Name cannot contain the character '%' (DMN id: _96b30012-a6e7-4545-89d3-068ec722469c, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=WARNING, path=null, line=176, column=-1
text=DMN: Missing expression for Decision Node 'Adjudication' (DMN id: _4bd33d4a-741b-444a-968b-64e1841211e7, No decision logic was defined for the node or variable) ]
org.kie.dmn.validation.ValidatorTest.testBkmAndBindingWarnLevel Message [id=0, level=WARNING, path=null, line=3, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'my f' (DMN id: _3ce3c41a-450a-40d1-9e9c-09180cd29879, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=18, column=-1
text=DMN: Missing expression for parameter p1 on node 'invoking' (No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=3, column=-1
text=DMN: Missing expression for Business Knowledge Model node 'my f' (DMN id: _3ce3c41a-450a-40d1-9e9c-09180cd29879, No decision logic was defined for the node or variable) ]
Message [id=0, level=WARNING, path=null, line=18, column=-1
text=DMN: Missing expression for parameter p1 on node 'invoking' (No decision logic was defined for the node or variable) ]
org.kie.dmn.validation.ValidatorTest.testVALIDATION Message [id=0, level=WARNING, path=null, line=340, column=-1
text=DMN: Variable named 'LLPA' is missing its type reference on node 'LLPA' (DMN id: _ed9c9678-f403-4338-8354-cef981e6ff26, Type ref not defined) ]
Message [id=0, level=ERROR, path=null, line=303, column=-1
text=DMN: Invalid name 'Best Rate %': Name cannot contain the character '%' (DMN id: _f595f4ae-02de-48d1-8cf4-9eb5407abc20, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=303, column=-1
text=DMN: Invalid name 'Best Rate %': Name cannot contain the character '%' (DMN id: _f595f4ae-02de-48d1-8cf4-9eb5407abc20, The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=333, column=-1
text=DMN: No expression defined for name 'payment' on node 'payment' (DMN id: _2c17bc83-3533-4e1d-a31f-430acf27069e, No decision logic was defined for the node or variable) ]
Message [id=0, level=ERROR, path=null, line=197, column=-1
text=DMN: Error compiling FEEL expression '(Loan Payment.amount+Borrower.monthlyOtherDebtPmt)/Borrower.monthlyIncome' for name 'DTI' on node 'DTI': Unknown variable 'Loan Payment.amount' (DMN id: _103a6a46-063b-40fb-a659-3964d49bcfa7, Error compiling the referenced FEEL expression) ]
Message [id=0, level=ERROR, path=null, line=233, column=-1
text=DMN: Error compiling FEEL expression 'LLPA*.00125 + Best Rate' for name 'adjustedRate' on node 'Loan Payment': Unknown variable 'Best Rate' (DMN id: _ee9ad659-b997-42d2-9860-02b697cd30a1, Error compiling the referenced FEEL expression) ]
Message [id=0, level=WARNING, path=null, line=340, column=-1
text=DMN: Variable named 'LLPA' is missing its type reference on node 'LLPA' (DMN id: _ed9c9678-f403-4338-8354-cef981e6ff26, Type ref not defined) ]
org.kie.dmn.validation.ValidatorTypeRefTest.testTYPEREF_NOT_FEEL_NOT_DEF_DefinitionsInput [Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=null, line=28, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=null, line=28, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.validation.ValidatorTypeRefTest.testTYPEREF_NOT_FEEL_NOT_DEF_FileInput [Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=28, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=28, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=/home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/kie-dmn/kie-dmn-validation/target/test-classes/org/kie/dmn/validation/typeref/TYPEREF_NOT_FEEL_NOT_DEF.dmn, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
org.kie.dmn.validation.ValidatorTypeRefTest.testTYPEREF_NOT_FEEL_NOT_DEF_ReaderInput [Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]
Message [id=0, level=ERROR, path=null, line=28, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ]
Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]
Expected size: 2 but was: 3 in:
[Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ],
Message [id=0, level=ERROR, path=null, line=28, column=-1
text=DMN: Invalid name 'myns:tEmploymentStatus': Name cannot contain the character ':' (The listed name is not a valid FEEL identifier) ],
Message [id=0, level=ERROR, path=null, line=35, column=-1
text=DMN: Unable to resolve type reference 'tEmploymentStatusss' on node 'Full Name' (The listed type definition was not found) ]]

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 28, 2023

(tests) - kogito-runtimes job #1656 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5461 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1656/display/redirect

Test results:

  • PASSED: 3355
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-28T15:11:13.575Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.031 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.342 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.040 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.054 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.713 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.354 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.102 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 4.051 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.971 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.448 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.948 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.123 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.825 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.018 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.115 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.568 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.243 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.168 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.253 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 57.216 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.134 s]
[2023-08-28T15:11:13.575Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:15 min]
[2023-08-28T15:11:13.575Z] [INFO] ------------------------------------------------------------------------
[2023-08-28T15:11:13.575Z] [INFO] BUILD FAILURE
[2023-08-28T15:11:13.575Z] [INFO] ------------------------------------------------------------------------
[2023-08-28T15:11:13.575Z] [INFO] Total time: 43:15 min
[2023-08-28T15:11:13.575Z] [INFO] Finished at: 2023-08-28T11:11:12-04:00
[2023-08-28T15:11:13.575Z] [INFO] ------------------------------------------------------------------------
[2023-08-28T15:11:13.575Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-28T15:11:13.575Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-28T15:11:13.575Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-28T15:11:13.575Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-28T15:11:13.575Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-28T15:11:13.575Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-28T15:11:13.575Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-28T15:11:13.575Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-28T15:11:13.575Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-28T15:11:13.575Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-28T15:11:13.575Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-28T15:11:13.576Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-28T15:11:13.576Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-28T15:11:13.576Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-28T15:11:13.576Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-28T15:11:13.576Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-28T15:11:13.576Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-28T15:11:13.576Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-28T15:11:13.576Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-28T15:11:13.576Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-28T15:11:13.576Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-28T15:11:13.576Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-28T15:11:13.576Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-28T15:11:13.576Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-28T15:11:13.576Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-28T15:11:13.576Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-28T15:11:13.576Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-28T15:11:13.576Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-28T15:11:13.576Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-28T15:11:13.576Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-28T15:11:13.576Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-28T15:11:13.576Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-28T15:11:13.576Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-28T15:11:13.576Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-28T15:11:13.576Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-28T15:11:13.576Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-28T15:11:13.577Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-28T15:11:13.577Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-28T15:11:13.577Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-28T15:11:13.577Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-28T15:11:13.577Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-28T15:11:13.577Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-28T15:11:13.577Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-28T15:11:13.577Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-28T15:11:13.577Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-28T15:11:13.577Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-28T15:11:13.577Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-28T15:11:13.577Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-28T15:11:13.577Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-28T15:11:13.577Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-28T15:11:13.577Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-28T15:11:13.577Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-28T15:11:13.577Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-28T15:11:13.577Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-28T15:11:13.577Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-28T15:11:13.577Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-28T15:11:13.577Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-28T15:11:13.577Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-28T15:11:13.577Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-28T15:11:13.577Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-28T15:11:13.577Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-28T15:11:13.577Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-28T15:11:13.577Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-28T15:11:13.577Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-28T15:11:13.577Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-28T15:11:13.578Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-28T15:11:13.578Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-28T15:11:13.578Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-28T15:11:13.578Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-28T15:11:13.578Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-28T15:11:13.578Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-28T15:11:13.578Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-28T15:11:13.578Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-28T15:11:13.578Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-28T15:11:13.578Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-28T15:11:13.578Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-28T15:11:13.578Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-28T15:11:13.578Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-28T15:11:13.578Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-28T15:11:13.578Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-28T15:11:13.578Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-28T15:11:13.578Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-28T15:11:13.578Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-28T15:11:13.578Z] [ERROR]
[2023-08-28T15:11:13.578Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-28T15:11:13.578Z] [ERROR]
[2023-08-28T15:11:13.578Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-28T15:11:13.578Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-28T15:11:13.578Z] [ERROR]
[2023-08-28T15:11:13.578Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-28T15:11:13.578Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-28T15:11:13.832Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-28T15:11:13.832Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-28T15:11:13.832Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-28T15:11:13.832Z] [INFO] OK [Executed in 0.169909 ms]
[2023-08-28T15:11:13.832Z]
[2023-08-28T15:11:13.832Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-28T15:11:13.832Z] [INFO] OK [Executed in 6.894292 ms]
[2023-08-28T15:11:13.832Z]
[2023-08-28T15:11:13.832Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-28T15:11:13.832Z] [INFO] OK [Executed in 7.123142 ms]
[2023-08-28T15:11:13.832Z]
[2023-08-28T15:11:13.832Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config12034157366362431005tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-28T15:11:13.832Z] [INFO] NOT OK [Executed in 2596481.512446 ms]
[2023-08-28T15:11:13.832Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-28T15:11:13.832Z]
[2023-08-28T15:11:13.832Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-28T15:11:13.832Z]
[2023-08-28T15:11:13.832Z] # Uploading artifacts
[2023-08-28T15:11:13.832Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-28T15:11:13.832Z]
[2023-08-28T15:11:13.832Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-28T15:11:13.832Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config12034157366362431005tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-28T15:11:13.832Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-28T15:11:13.906Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-28T15:11:14.316Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-28T15:11:15.692Z] Recording test results
[2023-08-28T15:11:18.592Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-28T15:11:18.609Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-28T15:11:20.062Z] + rm -rf console.log
[Pipeline] sh
[2023-08-28T15:11:20.353Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1656/consoleText
[2023-08-28T15:11:20.353Z] + tail -n 300

@jomarko
Copy link
Contributor Author

jomarko commented Aug 30, 2023

When I check logs, kogito-runtimes-downstream fail seems to be unrelated:

2023-08-28T16:30:07.8391122Z [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]

@jomarko
Copy link
Contributor Author

jomarko commented Aug 30, 2023

Jenkins rerun kogito-runtimes tests

@sonarcloud
Copy link

sonarcloud bot commented Aug 30, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@jomarko jomarko marked this pull request as ready for review August 31, 2023 04:35
@jomarko
Copy link
Contributor Author

jomarko commented Sep 1, 2023

@tarilabs would you mind to re-review?

@tarilabs
Copy link
Member

tarilabs commented Sep 1, 2023

I'm a bit concerned as I don't have the full visibility of the changes needed also on UI part, as also mentioned in https://github.com/kiegroup/drools/pull/5461#issuecomment-1686116286

Could you please get review from the DMN Tech Leads on Engiine and Editor, pleaase?
That would be @baldimir and @yesamer before proceeding to eventually merge this PR, please?

Thank you for your understanding

@baldimir
Copy link
Contributor

baldimir commented Sep 8, 2023

Thanks Jozef, looks good to me. Adding Yeser as a reviewer too.

Copy link
Contributor

@yesamer yesamer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @jomarko, I agree with @baldimir, so I think we can merge it.

//cc @ljmotta @tiagobento
With this change, the engine will return ALL the retrieved errors reported. As a result, we can have a lot of messages spawned in the EXECUTION tab. Let's consider if we need to implement a filter there.

@baldimir
Copy link
Contributor

baldimir commented Sep 8, 2023

@kiegroup/gatekeepers can someone please merge this if this is fine?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants