I would like to know how to change the structure of the default java module in IntelliJ IDEA:
module_name/src
Where src is marked as "sources" to:
module_name/src /main/java /test/java
Where main / java is marked as sources and test / java is marked as test sources.
Is there a way that I can do this by default, so I donβt have to manually do it every time?
source share