Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of BAT script calling maven Command

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail about BAT script call maven command example analysis, Xiaobian think quite practical, so share for everyone to make a reference, I hope you can have some harvest after reading this article.

Recently encountered a problem, because there are a lot of local libraries need to be installed, the dependency method used before is system, because it cannot be automatically introduced at the time of package.

org.zhixun IKAnalyzer 1.0 system ${basedir}/../ parent/libs/IKAnalyzer3.2.3Stable.jar

Therefore, you need to create a batch script that automatically installs:

mvn install:install-file -DgroupId=org.zhixun -DartifactId=IKAnalyzer -Dversion=3.2.3 -Dpackaging=jar -Dfile=libs/IKAnalyzer3.2.3Stable.jar

However, it always exits automatically after executing an mvn target. The pause command is also invalid. The analysis reason is that mvn itself is a bat command. Therefore, when exiting, the entire script process will exit. Add the call command to call it.

@echo off set localdir=%~dp0 call mvn install:install-file -DgroupId=org.zhixun -DartifactId=IKAnalyzer -Dversion=3.2.3 -Dpackaging=jar -Dfile=%localdir%/libs/IKAnalyzer3.2.3Stable.jar pause This article is shared here. I hope the above content can help you to learn more. If you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report