What are some tutorials and best practices that show to make a build from source code for a Java desktop / JEE web application?
I want to learn what needs to be packaged as a WAR/JAR from source and how it must be structured?
Here are a few links to get started:
See the external links section for more detailed information.
EDIT: Sorry the links are broken you need to add the closing ')' at the end.
If you're using Maven:
mvn package
If you're not using Maven at this point - you should seriously consider it. It will relieve you of a lot of build, packaging and dependency management task.