What is an acceptable folder structure for Java projects in IntelliJ IDEA?
Multiple sources (like this) suggest the following structure:
. │ .idea └─
Your configuration in the IntelliJ's File > Project Structure page will be overridden by the project's pom.xml after every clean install. To prevent this, you need to configure the source directory in pom.xml as below:
File > Project Structure
pom.xml
clean install
src/main/java