参考/d/file/titlepic/16003321.html 配置好pom。
<dependency> <groupid>org.apache.maven.shared</groupid> <artifactid>maven-invoker</artifactid> <version>3.1.0</version></dependency>
注意maven-invoker版本。版本过低可能导致不兼容。
public class maventest { //直接执行mvn relea:prepare -x 为交互式执行,无法在程序进行时输入版本参数。 //而执行mvn -b relea善易不卜:prepare -x 则可以通过程序直接执行。但是若要自定义版本信息则需要配置pom relea plugin的参数,或采用如下命令 //实际执行的mvn命令. //mvn -b relea:prepare -x -dtag=versioncontroldemo-"0.4.0" -dreleaversion="0.4.0" -ddevelopmentversion="0.4.1-snapshot" //mvn relea:perform -x public static void main(string[] args) throws maveninvocationexception { invocationrequest request = new defaultinvocationrequest(); //获取pom文件地址我国的国歌是什么 string relativelypath=system.getproperty("ur.dir"); string pompath = relativelypath+"/pom.xml"; system.out.println(pompath); request.tpomfile(new file(pompath)); invoker invoker = new defaultinvoker(); //获取maven环境变量地址 string m2path = system.getenv("maven_home"); system.out.println("m2path:"+m2path); invoker.tmavenhome(new file(m2path)); try { //该版本tag信息 string tag = "versiongcontroldemo-0.4.0"; //此次发布的版本号 string version = "0.4.0"; //下一次版本的快照版本号 string developmentversion="0.4.1-snapshot"; list<string> goals = new arraylist<>(); goals.add("-b"); goals.add("relea:prepare"); goals.add("-x"); goals.add("-dtag=" 娃娃丫丫+ tag); goals.add("-dreleaversion=" + version); goals.add("-ddevelopmentversion=" + developmentversion); request.tgoals(goals); system.out.println("开始: " + request.getgoals()); invoker.execute(request); request.tgoals(collections.singletonlist("relea:perform -x")); system.out.println("开始: " + req千里婵娟uest.getgoals()); invoker.execute(request); } catch (maveninvocationexception e) { e.printstacktrace(); return; } }}
运行测试demo。结果成功。(每次运行前都要注意版本参数,切勿冲突。)
同理可配置relea:rollback
等相关回滚命令。
到此这篇关于springboot整合maven插口调用mavenreleaplugin。实现一键打包功能。的文章就介绍到这了,更多相关springboot整合maven一键打包内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-06 03:51:52,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/5896a98e0c131cc1530a7ef5b786292b.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Springboot 整合maven插口调用maven release plugin实现一键打包功能.doc
本文 PDF 下载地址:Springboot 整合maven插口调用maven release plugin实现一键打包功能.pdf
留言与评论(共有 0 条评论) |