Can I see the exact commands IntelliJ uses to build a java project?

后端 未结 5 1378
野的像风
野的像风 2020-12-29 17:43

Can I see the exact commands IntelliJ uses to build a java project?

5条回答
  •  离开以前
    2020-12-29 18:45

    If you run a certain run configuration, check the output console (Ctrl+0) For example, it shows something like:

    "C:\Program Files\Java\jdk1.5.0_22\bin\java" -Didea.launcher.port=7532 "-Didea.launcher...
    
    Process finished with exit code 0
    

    The first line is the command for building and running the module...

提交回复
热议问题