读取maven命令行参数
我想在运行 Maven 时获取作为参数传递的内部版本号,并将其注入到一些 HTML 文件中。
举个例子: 构建命令将是“mvn -DBUILdNUM = 1”
我想将其注入到一个html文件中(希望在评论中)替换类似$ {builnum}的内容。
我还想使用类似的东西来缓存我的 js 脚本。
I want to take a build number passed as an argument when running maven and inject it into some HTML files.
To give an example:
Build command would be "mvn -DBUILdNUM=1"
I would like to take this and inject it into an html file (in a comment hopefully) replacing something like ${builnum}.
I would also like to use something similar for cache busting my js scripts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以使用 Maven 资源过滤。
You can use Maven Resource Filtering for this.