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属性插件。
如何集成插件,以便无论进程从哪个阶段开始,它都可以读取属性文件?
方法:
目标应该始终在构建过程的properties:read-project-properties一开始就执行,无论我调用mvn clean、 或mvn compile或任何其他要执行的阶段和目标集。
properties:read-project-properties
mvn clean
mvn compile
您可以使用<executions>插件的标签来做到这一点。在这里查看更多信息。如果您希望插件(mojo)在执行其他所有操作之前执行,我建议附加到“验证”或“初始化”阶段。
<executions>