自定义 Maven 原型或项目生成的替代方案

发布于 2024-12-07 05:25:14 字数 560 浏览 0 评论 0原文

我们希望从 Maven Archetype 生成项目,但我们发现它有点简单化。我们希望做到以下几点:

  1. 有一个简单的起点。不要问太多问题。
  2. 允许稍后(或在原始生成期间)使用附加功能更新项目。
  3. 允许添加/删除/更新项目功能。
  4. 更新 pom.xml、spring xml 文件,可能还有其他 XML 文件和属性文件。
  5. 从合同生成存根 Web 服务,包括单元测试。
  6. 生成 Eclipse / Intellij 项目会很好。
  7. 一些相当复杂的生成,例如将名称空间/类填充到 spring 拦截器中会很好。特别是如果它可以产生所述值。

Maven Archetypes 似乎除了在初始生成期间进行选择以及稍后添加文件之外不支持任何其他功能。我没有看到任何对修改现有文件的支持?我们可以通过正常的 Maven 构建生成存根 Web 服务,但似乎无法在 archetype:generate 期间运行任意 Maven 插件?

如果有人知道上述任何问题的答案,我们很乐意听到。此外,如果有人对我们正在寻找的功能集有替代方案,我们也想了解它们。

We would like to generate projects from a Maven Archetype but we are finding it a bit simplistic. We would like to do the following:

  1. Have a simple starting point. Not ask too many questions.
  2. Allow updating the project later (or during the original generate) with additional features.
  3. Allow adding / deleting / updating the project features.
  4. Updating pom.xml, spring xml files, possibly other XML files and property files.
  5. generation of stubbed web services from contracts, including unit tests.
  6. generation of Eclipse / Intellij projects would be nice.
  7. Some reasonably complex generation of things like populating namespaces / classes into spring Interceptors would be nice. Especially if it could generate said values.

Maven Archetypes do not appear to support anything more than making choices during the initial generation, and adding files later. I don't see any support for modifying existing files? We can generate stubbed web services via a normal maven build, but do not appear to be able to run arbitrary maven plugins during the archetype:generate?

If anyone knows the answers to any of the above, we like to hear it. Also if anyone has alternatives for the feature set that we are looking for we would like to know about them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

北音执念 2024-12-14 05:25:14

我们为我们的项目做了类似的事情。

我们定义了一个专用插件,它本身将调用 Archetype:generate 插件。

这样我们就可以依赖Archetype:generate的能力(自动解析和替换部分生成的类...)。

您可以在我们的 SVN 上查看此项目: http://websvn.ow2.org/listing.php?repname=weblab&path=%2Ftrunk%2FWebLabTools%2FMavenPlugins%2F&#

注意:该代码是由实习生完成的,请友善;-)

We did something like that for our project.

We defined a dedicated plugin that will itself call the Archetype:generate plugin.

This way we can rely on a the Archetype:generate capabilities (automatic parsing and replacement of part of the generated classes...).

You can have a look at this project on our SVN here: http://websvn.ow2.org/listing.php?repname=weblab&path=%2Ftrunk%2FWebLabTools%2FMavenPlugins%2F&#.

Note: That the code has been done by a trainee, please be kind ;-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文