We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How does one include native libraries using sbt-onejar?
The text was updated successfully, but these errors were encountered:
I had the same issue. You can add to the mappings that are pulled into jar creation in your build.sbt with something like (for opencv on x64 linux)
mappings in oneJar <+= baseDirectory map { b => (b / "binlib/linux64/libopencv_java246.so") -> "binlib/linux64/libopencv_java246.so" }
one-jar unpacks native libs from binlib/platform but also checks the root binlib directory as well.
Sorry, something went wrong.
No branches or pull requests
How does one include native libraries using sbt-onejar?
The text was updated successfully, but these errors were encountered: