I have packages that don't want to place in src folder in order to compile. Can I setup Eclipse so that other directory along with src would act as a source directory?
EDIT: When I do Build Path > Use as source folder on the folder which contains com/some_package/classes/*.java then error in Eclipse disappear but in command line compile time I get cannot find symbol error. Whereas, when I copy the same com.some_package/classes/*.java into src directory it works in eclipse and compiles command line too. How to fix command line compilation too?
src?