Maven、Subversion、Javadoc
有没有办法修改 Javadocs @version 值并在 SVN 存储库上自动添加文件的修订号?
示例模板 @版本 $v 修订版。 $rev
和输出 @版本 v2.1 修订版。 74321
更新: 我想添加修订号和“也许”如果可能的话,标签名称作为版本
is there any way to modify Javadocs @version value and add revision number of the file automaticly on SVN repository?
example template
@version $v rev. $rev
and output
@version v2.1 rev. 74321
update:
i want to add revision numbers and "maybe" if it would be possible, tag-names as versions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Subversion 关键字替换替换修订号。例如:
但是,您需要为要进行扩展的每个文件设置
svn:keywords
属性。例如:You can use Subversion keyword substitution to substitute the revision number. For instance:
However, you'll need to set the
svn:keywords
property on each of the files for which you want to do that expansion. e.g.: