加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
show-pom-version.rb 320 Bytes
一键复制 编辑 原始数据 按行查看 历史
jinmuyan 提交于 2021-05-19 20:29 . first commit
#!/usr/bin/ruby
# parse POM from stdin and prints the version number
require "rexml/document"
require "rexml/xpath"
pom = REXML::Document.new $stdin
# if the POM doesn't define the version by itself, it's inherited from the parent
puts (pom.elements["/project/version"] || pom.elements["/project/parent/version"]).text
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化