我使用Jenkins对Tomcat服务器进行自动部署。
我知道如何通过Tomcat管理器进行远程部署。 enter link description here
我知道如何使用curl从Nexus获取战争。
我想知道是否可以使用curl在一个命令中实现这两个操作,也许使用管道?
答案 0 :(得分:2)
是的,你可以。 curl
有一个名为--next
的功能,可以执行这两项操作:
$ curl ...nexus-options... https://url-to-nexus --next ...tomcat-options... https://url-to-tomcat
--next
见documentation。