如何使用 -e 开关从 eclipse 运行 Maven
是否可以使用带有 -e 开关的 exec-maven-plugin 来执行 exec 目标?我收到 MojoExecutionException
。
Is it possible to execute the exec goal with the exec-maven-plugin with the -e switch? I am getting a MojoExecutionException
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
右键单击项目>运行为>
maven 构建...
>在maven build...
之后使用-e
开关Note 3 点提供目标
right click the project > run as >
maven build...
> supply goal there with-e
switchNote 3 dots after
maven build...
右键单击您的项目并运行为 ->运行配置...
在目标输入框中添加 -e(或其他开关,例如 -X 等)。如果您已经有一些目标,请添加一个空格,然后放置开关。
Right click your project and Run as -> Run Configurations...
Add the -e (or other switches for eg. -X, etc.) in the Goals input box. If you already have some goals add a space and then put your switch.