Maven:自动增量maven中的版本
我正在使用 Maven 2.0 正如您从下面一行中看到的,我将版本硬编码为 1.0
是否有可能对于每个构建版本都会自动递增。
<copy file="D:/MyWeb/service/target/MyWeb-ws-1.0.war" tofile="C:/Softwares/apache-tomcat-6.0.33/webapps/MyWeb-ws-1.0.war" />
请大家推荐一下,非常感谢。
I am using Maven 2.0
As you can see from the below line , i am hardcoding the version as 1.0
Is it possible that for every build the version automatically increments .
<copy file="D:/MyWeb/service/target/MyWeb-ws-1.0.war" tofile="C:/Softwares/apache-tomcat-6.0.33/webapps/MyWeb-ws-1.0.war" />
Please suggest , thank you very much .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Build Number Maven 插件来实现此目的。
正如他们的网页所记录的那样,
您可以选择您方便的一种。
You can look at using the Build Number Maven Plugin for this.
As documented in their web page,
You can choose the one which is convenient to you.