是否有任何 Maven 插件允许生成列出接口实现的文件?

发布于 2025-01-06 08:14:59 字数 59 浏览 0 评论 0原文

我想在打包阶段之前获取实现给定接口的类列表(以便将此文件添加到输出 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自控 2025-01-13 08:14:59

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/

慕烟庭风 2025-01-13 08:14:59

好吧,由于我已经实现了几次,所以我现在有了一个可以使用的方法。

  1. GMaven Plus 插件 添加到您的构建中
  2. 在此执行中使用项目类路径声明执行
  3. ,添加 reflections Java 库
  4. 的实现
  5. 在您的 groovy 脚本中,找到您想要实现该接口的 Report 类 你想要的方式。

Well, since I've already implemented that a few times, I now have a ready to use method.

  1. Add the GMaven Plus plugin to your build
  2. Declare an execution using project classpath
  3. in this execution, add the reflections Java library
  4. In your groovy script, find the interface ou want implementations of
  5. Report classes implementing that interface the way you want.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文