码迷,mamicode.com
首页 > 其他好文 > 详细

awk获取pom里的GAV并install到本地仓库

时间:2016-04-27 18:40:00      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

awk 
BEGIN {FS="[<>]"} \
{if($2=="groupId") {groupId=$3}} \
{if($2=="artifactId") {artifactId=$3}} \
{if($2=="version") {version=$3}} \
{if($2=="type") {type=$3}} \
{if($4=="\/type") {system("mvn install:install-file -DgroupId="groupId" -DartifactId="artifactId" -Dversion="version" -Dpackaging=jar -Dfile=was85\/"artifactId".jar")}}
file.pom

 

awk获取pom里的GAV并install到本地仓库

标签:

原文地址:http://www.cnblogs.com/wayhow/p/5439656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!