如何将 NAR 依赖项添加到 Maven pom 文件?
我正在尝试使用 JNI,并使用 maven-nar-plugin 将 C++ 代码打包到 NAR 中。现在,我想将此代码包含在另一个 Java 项目中。我该如何正确地做到这一点?
I'm trying to use JNI, and I'm using the maven-nar-plugin to package up the C++ code into a NAR. Now, I want to include this code in another Java project. How do I go about doing this properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您想要如何使用 maven nar 插件创建的依赖项。从 文档,
FAQ 有一节介绍如何从 java 代码加载本机库。
希望这些有帮助。
It depends on how you want to use the dependencies created by maven nar plugin. From the documentation,
The FAQ has a section on how to load the native library from java code.
Hope these help.