是否有用于创建控制台应用程序的 Maven 原型?
是否可以通过 mvn archetype:generate
生成一个具有 main 功能的 Maven 存根项目,并且构建过程的一部分包括制作 App.cmd/App.sh 以从 shell 运行应用程序?
看来我需要 maven-shade-plugin 来创建控制台带有用于命令行启动的包装脚本的应用程序 jar。但是,我不知道是否有一个原型来配置 Maven 项目以使用它并创建一个空的控制台应用程序。
Is it possible to generate a maven stub project via mvn archetype:generate
that has a main function, and part of the build process includes making a App.cmd/App.sh to run the app from a shell?
It seems that I need the maven-shade-plugin to create a console app jar with wrapper scripts for command line startup. However, I don't know if there is an archetype to configure a maven project to use it and create an empty console application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“Simple”原型创建一个 Maven 项目,其中的类具有“main”方法。将其与您的 maven-shade-plugin 一起使用来创建可执行 jar,然后您就可以开始了!
The "Simple" archetype creates a maven project with a class that has a "main" method. Use that with your maven-shade-plugin to create an executable jar and you are good to go!
“org.apache.maven.archetypes”“maven-archetype-quickstart”(版本1.1)为我工作。
"org.apache.maven.archetypes" "maven-archetype-quickstart" (version 1.1) worked for me.