从 IntelliJ Idea 运行 Maven 目标时使用 IntelliJ Idea 模块类路径
假设我有两个 Maven 项目:moduleA 和 moduleB。
moduleA 在其 pom.xml 中依赖于 moduleB。
我使用 IntelliJ Idea,并且有“Maven 项目”工具窗口,其中有这两个 Maven 项目。
并且可以从那里运行 maven 插件目标:我打开“Maven 项目”->模块A->插件 ->码头->码头:跑。 Java已运行,moduleB位于类路径中,但它位于Maven本地存储库中!
因此,如果我更改 moduleB 源中的某些内容并从 Idea 执行 jetty:run,则在使用 mvn install 安装 moduleB 之前我不会看到代码更改。
Idea中是否有任何解决方案可以在没有mvn install的情况下处理,例如使用idea-module classpath运行某种maven目标?
Lets say I have two maven projects: moduleA and moduleB.
moduleA has a dependency to moduleB in it's pom.xml.
I use IntelliJ Idea, and I have 'Maven Projects' tool window, where I have both these maven projects.
And it is possible to run maven plugin goals from there: I open 'Maven Projects' -> moduleA -> Plugins -> jetty -> jetty:run.
Java is run, moduleB is in classpath, but it is in the Maven local repository!
So that, if I change something in moduleB sources and execute jetty:run from Idea, I will not see code changes until moduleB is installed with mvn install.
Is there any solution in Idea to deal without mvn install, for instance to run somehow maven goals with idea-module classpath?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 Jetty Integration IDEA 插件来运行独立的 jetty
http://github.com/codebrewer/intellij-idea-jetty-integration-plugin
如果你仍然想使用 jetty:run,你可以告诉 IDEA 对 moduleB 进行 mvn install:
运行->编辑配置->选择你的maven运行配置->配置选项卡->启动前(底部)->运行 Maven Goal
I suggest to use Jetty Integration IDEA plugin to run standalone jetty
http://github.com/codebrewer/intellij-idea-jetty-integration-plugin
if you still want to use jetty:run, you could tell IDEA to do mvn install for moduleB:
Run -> Edit Configurations -> select youy maven run config -> Configuration tab -> Before launch (at the bottom) -> Run Maven Goal
该 IDEA 插件不再开发,因为 IntelliJ 现在包含它自己的 Jetty runconfig 东西。
以下是对我的 Maven 多模块项目有用的内容:
在文件、项目结构、模块中,我将所有模块编译到相同的输出路径(“使用模块编译输出路径”)。我选择了 Jetty Deployment 文件夹中的“...WEB-INF\classes”路径。
然后我还必须告诉IDEA在编译时不要清除输出目录。否则,每个编译的模块(一个接一个)都会清除前一个模块中的类。设置,编译器,取消选中“重建时清除输出目录”。
另外,我最初必须将所有外部(maven)依赖项 jar 放入“...WEB-INF\lib”文件夹中。
是的,它很hacky,但是有效。如果有人有更好、更干净的解决方案,我很想知道。
That IDEA plugin is not developed anymore because IntelliJ now includes its own Jetty runconfig thing.
Here's what worked for me with a Maven multi-module project:
In File, Project Structure, Modules I have all modules compile to the same output path ("Use module compile output path"). I chose the "...WEB-INF\classes" path within the folder of the Jetty Deployment folder.
Then I also have to tell IDEA to not clear output directories when compiling. Otherwise each module that compiles (one after another) clears the classes from the previous one. Settings, Compiler, uncheck "Clear output directory on rebuild".
Also, I had to put all my external (maven) dependency jars into the "...WEB-INF\lib" folder initially.
Yes, it's hacky, but works. If someone has a better, cleaner solution I'd be interested to know.