I checked out the information on the github page (
https://github.com/bytedeco/javacv#downloads) on how to include javacv with Maven.
Doing this worked fine, all libraries are included. But those are not the platform libraries which I need, thats why I get "java.lang.UnsatisfiedLinkError: no jnivideoInputLib in java.library.path".
The github page mentioned to set the system property "platform.dependency".But how do I set this? I already tried to set a normal properties in my pom file, but off course this
will not affect anything until I use the property somewhere. I tried this as well:
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>javacv</artifactId>
<version>0.9</version>
<classifier>windows-x86</classifier>
</dependency>
I doesnt work, now Maven cant find the jar at all, which is correct because the repo only contains a general javacv.jar.
I hope someone can tell me what the github page means and how to implement this.
Thanks in advance.