是否有任何 Maven 插件允许生成列出接口实现的文件?
我想在打包阶段之前获取实现给定接口的类列表(以便将此文件添加到输出 jar 中)。我怎样才能做到这一点?
I would like, before packaging phase, to obtain a list of classes implementing a given interface (for this file to be added in output jar). How can I do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
javadoc 方法可能会起作用。另一种选择是编写一个 Ant 脚本来完成此操作。您可以使用 Maven 任何插件来帮助完成此任务:
http://maven.apache.org/plugins/maven-antrun-plugin/
The javadoc method would probably work. Another option would be to write an ant script to do it. You can use the maven any plugin to help accomplish this:
http://maven.apache.org/plugins/maven-antrun-plugin/
好吧,由于我已经实现了几次,所以我现在有了一个可以使用的方法。
Well, since I've already implemented that a few times, I now have a ready to use method.