This is almost for just me, but maybe someone else could use the info as well.
To compile the source code into class files (I didn't have the JDK directory in my path, hence the long command):
Once you work out the bugs to the class file (errors and warnings) you create the jar file with the following command:
c:\<directory to jdk>\bin\jar.exe cvfm <name>.jar manifest.txt com/
The "cvfm" portions are flags for the jar compressor. <name>.jar is the output file name you want. Manifest.txt contains the directory listing of class files. com/ is the base directory of your class files.