I downloaded the javaCV project from here
https://github.com/bytedeco/javacv
then I tried to import it in Netbeans, but i got the following error
Failed to execute goal on project javacv: Could not resolve dependencies for project org.bytedeco:javacv:jar:1.0-SNAPSHOT: The following artifacts could not be resolved:
org.bytedeco:javacpp:jar:1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:opencv:jar:3.0.0-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:ffmpeg:jar:2.6.3-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:flycapture:jar:2.7.3.19-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:libdc1394:jar:2.2.3-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:libfreenect:jar:0.5.2-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:videoinput:jar:0.200-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:artoolkitplus:jar:2.3.1-1.0-SNAPSHOT,
org.bytedeco.javacpp-presets:flandmark:jar:1.07-1.0-SNAPSHOT:
Could not find artifact org.bytedeco:javacpp:jar:1.0-SNAPSHOT -> [Help 1]
I also tried to install it manually, but I got the same error. What shoud I do to solve this problem? Thanks
According http://search.maven.org/#search|ga|1|bytedeco there does not exists a version of
1.0.-Snapshot
.So you have to change the dependencies list to the old version:
and also for javacpp:
etc.
I think the author forgot to publish the "new version".