是否有用于创建控制台应用程序的 Maven 原型?

发布于 2024-12-10 08:27:10 字数 323 浏览 0 评论 0原文

是否可以通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

靑春怀旧 2024-12-17 08:27:10

“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!

唔猫 2024-12-17 08:27:10

org.apache.maven.archetypes”“ma​​ven-archetype-quickstart”(版本1.1)为我工作。

/**
 * Hello world!
 *
 */
public class App 
{
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
    }
}

"org.apache.maven.archetypes" "maven-archetype-quickstart" (version 1.1) worked for me.

/**
 * Hello world!
 *
 */
public class App 
{
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文