修改并重建Openfire插件
我正在尝试修改 Openfire 中的消息监控插件。
我使用 svn 检查了代码。我还可以弄清楚我需要更改什么代码以及在哪里更改代码。但我不清楚重建插件并测试我的更改。
在 Eclipse 中,我可以将“plugins.monitoring”包导出为 .jar
,但它不会导出所有类。例如,它导出 plugins.monitoring.src.web
但忽略子包中的类(如果我没记错的话),例如 plugins.monitoring.src.java.org .jivesoftware.openfire.reporting.util
。
如何只编译一个包并将其导出到 .jar
文件?
谢谢
I am trying to modify the message monitoring plugin in Openfire.
I checked-out the code using svn. And i could also figure out what and where i will need to change the code. But I am not clear about rebuilding the plugin and testing my changes.
In Eclipse, I can export the "plugins.monitoring" package as a .jar
, but it does not export all the classes. For example, it exports plugins.monitoring.src.web
but ignores classes in sub-packages (if i am not wrong with the term) such as plugins.monitoring.src.java.org.jivesoftware.openfire.reporting.util
.
How do I compile only one package and export it to .jar
file?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道如何做到这一点。可以使用 ant
build.xml 来完成,可以在 Openfire 源代码内的 build 目录中找到
I got how to do this. It is to be done using ant
build.xml can be found in the build directory inside the Openfire source code