You are looking at the wrong JAR file. The JAR file you are looking at is described by the JAR plugin in lines 68-79.
Your POM doesn't have any execution entry for the assembly plugin. Did you remember to pass assembly:single on the build command line? If not, the assembly plugin will not have run. If that goal does get run you will have a JAR name bls-inquiry-tracking-1.0-jar-with-dependencies.jar, that's you one you want to run.
The MF file in the 1st jar is
Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: 1.5.0_12-b04 (Sun Microsystems Inc.)
And when I try to run it I get the following error :
C:\projects\bls-inquiry-tracking\target>java -jar bls-inquiry-tracking-1.0-SNAPSHOT-jar-with-dependencies.jar
Failed to load Main-Class manifest attribute from
bls-inquiry-tracking-1.0-SNAPSHOT-jar-with-dependencies.jar
The Mf file of bls-inquiry-tracking-1.0-SNAPSHOT.jar is still the same as what was in my previous post.