Difference between intellij Project make and Maven Compile?

后端 未结 3 1257
眼角桃花
眼角桃花 2020-12-25 10:00

When working in maven module, what\'s the difference between doing in intellij build -> Make Project and Maven Projects -> Root pom -> Compile phase.

Does in

3条回答
  •  既然无缘
    2020-12-25 10:44

    No, IntelliJ doesn't call maven, but get all information from the pom.xml e.g. output directories libraries etc.

    So don't worry, you can call make from IntelliJ for compiling and running your application. If you have some special goals in your maven build file you can run it from the maven window.

    All maven dependencies will be downloaded from IntelliJ an stored in the maven local repository.

提交回复
热议问题