izpack-maven-plugin 默认情况下不包含本机库
我已在安装 XML 文件中指定了标准快捷方式生成本机:
<natives>
<native type="izpack" name="ShellLink.dll"/>
<native type="izpack" name="ShellLink_x64.dll"/>
<native type="izpack" name="WinSetupAPI.dll"/>
<native type="izpack" name="WinSetupAPI_x64.dll"/>
</natives>
但是,当我运行 izpack:izpack 并运行生成的 jar 时,它会挂在快捷方式面板上,表示无法找到该库。当我将 .dll 复制到同一目录中时,它就可以工作。
知道如何指定将文件包含到最终的 jar 中吗?
I have specified the standard shortcut-generating natives in my installation XML file:
<natives>
<native type="izpack" name="ShellLink.dll"/>
<native type="izpack" name="ShellLink_x64.dll"/>
<native type="izpack" name="WinSetupAPI.dll"/>
<native type="izpack" name="WinSetupAPI_x64.dll"/>
</natives>
However, when I run izpack:izpack and run the resultant jar, it hangs on the shortcutPanel saying it can't locate the library. When I copy the .dll's into the same directory it works.
Any idea how I can specify that the files be included into the final jar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 IzPack 4,您不能在此处使用包装器元素,只需使用以下内容:
这也在 Installation.dtd 中进行了记录:
对于 IzPack 5,dtd 已更改为您在上面使用的语法。
for IzPack 4 you must not use a wrapper element here, just use the following:
This is also documented in the installation.dtd:
<!ELEMENT installation (info, packaging?, properties?,
variables?,dynamicvariables?,conditions?,installerrequirements?,
guiprefs?, locale, resources?, panels,
listeners?, packs, jar*, native*)>
For IzPack 5 the dtd has been changed to the syntax you are using above.
尝试将其添加到您的 pom.xml 中
try to add this in your pom.xml