[Solved] Problem install Eclipse IDE

I’m able to compile and run plugins that don’t have any external dependencies like the astro binding. However, when I try to build e.g. the airvisualnode binding (the first I found with an external dep) I get the following errors after “Resolve”:

Resolution failed. Capabilities satisfying the following requirements could not be found:
[<>]
⇒ osgi.identity: (osgi.identity=org.openhab.binding.airvisualnode)
⇒ [org.openhab.binding.airvisualnode version=2.5.0.201906010944]
⇒ osgi.wiring.package: (&(osgi.wiring.package=jcifs.netbios))

I then followed the post from @wborn and added the following dependency (copied from the airvisualnode pom.xml) to the openhab2-addons\bom\runtime-index\pom.xml:

<dependency>
  <groupId>org.samba.jcifs</groupId>
  <artifactId>jcifs</artifactId>
  <version>1.3.17</version>
</dependency>   

After that, I run again mvn -DskipChecks -DskipTests clean install on the openhab2-addons folder, but the error message stays the same.

What did I miss?