I am using the javac compiler to compile java files in my project. The files are distributed over several packages like this: com.vistas.util, com.vistas.converter, com.vistas.LineHelper, com.current.mdcontect.
Each of these packages has several java files. I am using javac like this:
javac com/vistas/util/*.java com/vistas/converter/*.java
com.vistas.LineHelper/*.java com/current/mdcontect/*.java
(in one line)
Instead of giving so many paths, how can I ask the compiler to compile recursively all the java files from the parent com directory?