bytedeco/javacv

sbt-javacv failed with javacv-1.5

Open

#1.194 geöffnet am 24. Apr. 2019

Auf GitHub ansehen
 (6 Kommentare) (0 Reaktionen) (1 zugewiesene Person)Java (1.583 Forks)batch import
enhancementhelp wanted

Repository-Metriken

Stars
 (6.985 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

sbt project.

in plugin.sbt file:

addSbtPlugin("org.bytedeco" % "sbt-javacv" % "1.17")

Everything goes well with version 1.4.4.

in build.sbt file:

name := "HelloJavaCV"

version := "0.1"

scalaVersion := "2.12.8"

javaCVVersion := "1.4.4"

javaCppVersion := "1.4.4"

javaCppPlatform := Seq("windows-x86_64", "linux-x86_64")

javaCppPresetLibs := Seq("opencv" -> "4.0.1", "ffmpeg" -> "4.1")

But, when i change build.sbt file to:

name := "HelloJavaCV"

version := "0.1"

scalaVersion := "2.12.8"


javaCVVersion := "1.5"

javaCppVersion := "1.5"

javaCppPlatform := Seq("windows-x86_64", "linux-x86_64")

javaCppPresetLibs := Seq("opencv" -> "4.0.1", "ffmpeg" -> "4.1.3")

compile in sbt shell, I will get errors:

[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: org.bytedeco.javacpp-presets#opencv;4.0.1-1.5: not found
[warn]  :: org.bytedeco.javacpp-presets#ffmpeg;4.1.3-1.5: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
.
.
sbt:HelloJavaCV> [error] (update) sbt.librarymanagement.ResolveException: unresolved dependency: org.bytedeco.javacpp-preset
s#opencv;4.0.1-1.5: not found
[error] unresolved dependency: org.bytedeco.javacpp-presets#ffmpeg;4.1.3-1.5: not found

Anything i missing?

Thank you.

Contributor Guide