How to make IntelliJ build to bin directory
Answered
Simply put, I want to be able to change the build directory in the Project Compiler Output to my bin folder. However, what it currently does is export it to bin/production/ProjectName. How can I not have the production/ProjectName part of the compiling directory?
Please sign in to leave a comment.
Change it in the module settings so that it doesn't inherit the project output.
https://www.jetbrains.com/help/idea/specifying-compilation-settings.html#specify_compilation_output_folders
Thank you very much! I appreciate it.