When you build jars that are supposed to work with a specific JRE version, it's not sufficient to set the correct compiler level. Even if the compiler creates byte code for a particular language version, your code may accidentally use API that is not available in the class library of this Java version, and the compiler will not notice this. For example, if your source code...
Read More