对从 Eclipse 3.5 导出的 jar 文件进行签名?
从 Eclipse 3.5 导出时是否可以对 jar 文件进行签名? 或者一个插件可以让这种情况发生?
我可以轻松导出可运行的 jar,并使用 jarsigner 自己对其进行签名,但是每次更改都手动执行此操作效率不高。
Is it possible to sign a jar file as you export it from Eclipse 3.5? Or a plugin to allow this to happen?
I can easily export a runnable jar, and sign it myself using jarsigner, but manually doing this every change is not efficient.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有插件,可能的替代方法是设置一个 ant 脚本来根据需要为您执行操作。
JAR 签名 提到了Platform-releng-signedbuild 脚本 作为示例,使用 一些提示。
If there is no plugin, a possible alternative is to setup an ant script to do the operation for you on demand.
The JAR Signing mentions the Platform-releng-signedbuild script as an example, completed with a few tips.
有一个插件可以帮助您,http://jarsigner.sourceforge.net/ 您安装该插件dropins,在首选项页面中配置它,然后使用传统的 Eclipse 导出为 jar 创建 jardesc。 然后右键单击 jardesc 文件并选择“创建签名 JAR”,它将创建 jar 文件并使用所选首选项对其进行签名。
问候,
there's a plugin that can help you, http://jarsigner.sourceforge.net/ you install the plugin in the dropins, configure it in the preferences page and then create the jardesc with a traditional eclipse export as jar. then you right click in the jardesc file and select "Create Signed JAR" and it will create the jarfile and sign it using the selected preferences.
Regards,