将 Maven 控制台与 m2eclipse 一起使用
Maven 新手在这里.. 有没有办法在 Eclipse 中打开控制台并在 M2Eclipse 插件上执行 Maven 命令?这是一个非常好的插件,但我环顾四周,没有找到我想要的一些功能。谢谢!
Maven newb here..
Is there any way to open a console in eclipse and execute maven commands on the M2Eclipse plugin? It's a pretty nice plugin but I'm looking around and not finding some of the functionalities that I want. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你想运行特定的maven插件,你可以这样做
==>右键单击pom.xml==>运行为==> Maven 构建==>它将打开一个弹出窗口,
您可以输入要运行的目标,在目标:输入框中输入您的目标
目标:编译==>运行
这将运行编译目标。
If you want to run a specific maven plugin, You can do this
==> Right click on pom.xml ==> Run as ==> Maven build ==> It will open a pop up
You can type the goal that you want run, Type your goal in the Goals: input box
Goal : compile ==> Run
This will run compile goal.
也许你有同样的问题
如何获取访问(嵌入)Eclipse中的Maven控制台?
你可以使用“外部工具”功能来做到这一点。
请参阅:
抱歉没有图像,因为我的声誉低于 10。
maybe you have same question to it
How to get access to (embedded in) Maven console in Eclipse?
you can use "external tools" function to do it.
see:
sorry for no images, because my reputation is below 10.
您可以只从操作系统的控制台使用 Maven,如果您所做的更改影响了 Eclipse 项目,请运行
mvn eclipse:eclipse
目标,然后右键单击 Eclipse 中的项目,然后单击
刷新
You could just use maven from your operating system's console, and if you make changes that affect your eclipse project run the
mvn eclipse:eclipse
goalThen right click on project in Eclipse and click
Refresh