gpt4 book ai didi

maven-2 - 如何使用 maven build 中的 url 打开浏览器

转载 作者:行者123 更新时间:2023-12-02 16:46:49 24 4
gpt4 key购买 nike

我正在使用 Maven3 构建一个 Web 应用程序,并通过 mvn jetty:run-war 运行它。现在我想在系统浏览器中从我的 Maven 构建中打开 Web 应用程序。

最佳答案

我在 Windows 操作系统上解决了我的问题,这是目前我唯一的构建系统。在jetty服务器启动并托管我的网络应用程序后,构建通过antrun进行启动调用:

<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>Run URL in system browser.</id>
<phase>install</phase>
<configuration>
<target>
<exec executable="start" vmlauncher="false">
<arg line="http://localhost:8080/rap?startup=entrypoint"/>
</exec>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>

关于maven-2 - 如何使用 maven build 中的 url 打开浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12726184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com