build java to jar code example
Example 1: java to jar
# cd into the directory that contains your project
jar cvfe <output jar filename>.jar <main class location> *
Example 2: create a JAR file containing the class file
jar cvf jar_name.jar class_you_want_in_jar.class