使用maven +卫士
有没有人使用maven和yguard来混淆jar文件?如何做到这一点?
Has anybody used maven and yguard for obfuscating jar files?How to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有人使用maven和yguard来混淆jar文件?如何做到这一点?
Has anybody used maven and yguard for obfuscating jar files?How to do so?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我已经在 Maven 中使用 yguard 进行了混淆。我使用了 maven ant run 插件来运行 ant 任务。
步骤:
pom.xml
中的build.xml
。检查Maven Antrun
插件的文档。你那里有很多例子。build.xml
。如果您想引用项目信息等 Maven 引用,请在执行 ant 任务之前将它们定义为pom.xml
中的属性如果这回答了您的问题,请告诉我
I have done obfuscation using
yguard
inMaven
. I have used the maven ant run plugin to run the ant tasks.Steps:
build.xml
in yourpom.xml
. Check documentation ofMaven Antrun
plugin. You have a lot of examples there.build.xml
with the rename elements as required by your project/jar. In case you want to refer to the Maven references like project information, define them as properties in yourpom.xml
before the ant task is executedPlease let me know if this answers your question