maven使⽤shell命令批量上传jar包到远程maven库python代码背景:
需要批量导⼊jar包到远程库,有远程库的⽹页登陆名和密码(admin权限),准备写程序批量导⼊。
1、前提条件
1、本地安装好了maven
2、有程序的运⾏环境(我⽤的python编写的)
2、核⼼代码:
核⼼代码:
#获取根路径的所有jar包
def getAllJar(rootpath):
lists=[]
for root ,dir,files in os.walk(rootpath):
for each in files:
dswith('jar'):
lists.append(each)
return lists
#传⼊⼀个根路径以及⼀个⽬标jar包路径,可以返回⼀个jar上传的shell语句
#rootpath='D:\jarpathdir'
#filepath='D:\jarpathdir\org\apache\logging\..\*.jar'
def getShell(rootpath,filepath):
pace(rootpath,'')[1:]
repoId='myrepo'
repoUrl='.../repository/myrepo'
templist=delRootFilePath.split('\\')
jarVersion=templist[-2]
jarArtifactid=templist[-3]
jarGroupid='.'.join(templist[:-3])
jarShell='mvn deploy:deploy-file'\
+'-DrepositoryId='+repoId\
+'-Durl='+repoUrl\
+'-Dfile='+filepath\
+'-Dgroupid='+jarGroupid\
+'-DartifactId='+jarArtifactid\maven打包本地jar包
+'-Dversion'+jarVersion\
+'-Dpackgaing=jar'
return jarShell
#执⾏shell的⽅法:
os.system(jarshell)
执⾏此语句就可以上传⼀个jar包到远程库,多个语句依次执⾏,就可以批量上传了。
流程:
1)设置maven的conf⽂件夹中的setting⽂件,把⽤户名密码写进去,并注释掉所有远程镜像库
2)把responsary库拷贝到其他位置(否则上传不成功),并以此作为代码中的rootpath
3)结合以上代码原理,构建每⼀个jar的shell语句依次执⾏
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论