I'm rarely using java, so my knowledge of modern ecosystem is very limited :(. AFAIK, Java is heavy glued with directory hierarchy and file names: for example, if i have a .jar file with "com.mycompany.myapp.WndMain" class, the corresponding .class file must be named exactly "WndMain.class" (case sensitive!) and be placed into "com/mycompany/myapp" directory tree inside .jar file (that is actually a .zip archive).
But while developing applications i don't want my source code files to be named CamelCase and scattered in some directory trees! It's my source code, after all. I prefer files to be organized the way it's comfortably for me to work with them, not for some stupid compiler and archiver :). I want a clean "src" folder with files like "wnd_main.java", "wnd_about.java" etc. Is it some easy way to automatically generate correct file names and directory structure during compilation, based on actual source code content?
Of course i can create script of my own - via Python, Ruby, Shell or whatever - that will read content of ".java" files, parse "using" and "class" directives, create directory structure, copy files, compile etc... But maybe all of this is already done years ago and all i need is something like "sudo apt-get install javamake"? :)