Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我计划在我的项目的 Maven 编译期间执行一个脚本文件。该脚本将查看属性文件并使用其中的值,它应该创建一个 Java 类(具有静态最终字符串,其具有属性文件中的值作为值),稍后可以在项目中使用。
最好的方法是什么?
编译后,Java 文件应该在 IDE 中可见。我正在考虑使用gmaven 插件,但我不确定是否可以使用它创建文件。否则我将不得不使用 bash 脚本或类似的脚本来创建 Java 文件。
感谢您的任何建议或意见
我最终使用 gmaven 插件来运行一个 groovy 脚本,然后我使用 maven build helper 插件将生成的源代码包含在编译中。