create JAR from Java code example
Example 1: java to jar
# cd into the directory that contains your project
jar cvfe
Example 2: compile java to jar in mac
javac HelloWorld.java
# cd into the directory that contains your project
jar cvfe
javac HelloWorld.java