[SOLVED] - Resolve error after adding binding (verisure) as run requirement

Started with a scratch install using latest Eclipse installer and version 2024-06, I get this error on latest main (4.2.0-SNAPSHOT) when trying to resolve run requirements for the verisure binding:

The binding builds OK using mvn clean install -pl org.openhab.binding.verisure

Usually this type of resolve errors can be fixed by rebuilding the distro and binding using mvn clean install, then doing a Maven/Update project in Eclipse, but in this case the error persists.

If I remove the verisure binding as a run requirement, the resolve works.

Any clues how to resolve this?
Need to prepare a fix for #16867.

BR,

/Janne

I managed to fix it by specifying jsoup as a dependency in the pom.xml for the demo app.

    <dependency>
      <groupId>org.jsoup</groupId>
      <artifactId>jsoup</artifactId>
      <version>1.14.3</version>
      <scope>runtime</scope>
    </dependency>