UnsupportedClassVersionError
isn't about the JAR (a JAR is simply a zip archive), but instead the classes inside the JAR.
.class
files are just compiled Java sources and are in a format called ByteCode that the JVM (Java Virtual Machine) uses to perform operations on the underlying platform. Bytecode's format changes every once in a while (Java has been around since 1991) and thus the version numbers that are hard-coded into compiled classes formats usually change between JRE releases.
tl;dr:
What you'll need to do is acquire the source and re-compile against the JRE you want. There is no way to just tell the class files to change or be compatible with older versions. Archived JRE versions are available but you'll have to register for an account to download versions other than the latest.
EDIT
I wasn't paying attention to the version number. Your .class
files are compiled with J2SE 1.8 and you're running the JRE7. Install the JRE 1.8.