What is the standard project directory structure of a standalone Java SE (Command Line based) application?
src
folder will contain all my .java
files in properly organized packages. Other than that I have bin
folder which will contain my .class
files.
I've Properties files and XML configuration files in my project. In which directory should I place them? Should I create a package named com.myproject.config
and place all the .xml
config files in that?
I want the dependent jars to be packaged along with my final package. So should I create a folder (say by the name lib
) to hold all these .jar
files?