有没有办法从命令行将目录添加到 Maven jetty 插件中的类路径
我使用命令 mvn jetty:run 使用 jetty 插件与 maven 一起运行 jetty。
是否有命令行选项可以将外部目录添加到类路径中?像 java -cp 选项之类的东西?
TIA
I am running jetty with maven using the jetty plugin using the command mvn jetty:run.
Is there a command line option to add an external directory to the classpath? Something like the java -cp option?
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您为
extraClasspath
定义 Maven 属性,则可以使用命令行系统属性传递自定义 extraClasspath 值。例如,如果您的 POM 具有以下内容:您可以使用
mvn jetty:run -Djetty.extraClasspath=../resources/
指定额外的类路径。If you define a Maven property for
extraClasspath
, you can pass a custom extraClasspath value with a command line system property. For example, if you're POM had the following:You could specify the extra classpath with
mvn jetty:run -Djetty.extraClasspath=../resources/
.您是否尝试过此处建议的解决方案:
Adding classpath to jetty running in Maven 集成测试
Have you tried the solution suggested here:
Adding classpath to jetty running in maven integration-test
从
mvn jetty:help -Ddetail=true -Dgoal=run
打印的内容来看,从命令行看来这是不可能的From what is printed by
mvn jetty:help -Ddetail=true -Dgoal=run
, it looks like it is not possible from command line