idea intellij - Error: java: fuente inválida versión 1.9

Estoy tratando de ejecutar mi clase de analizador JSQL, pero estoy obteniendoError: java: invalid source release 1.9.

Traté de seguiresta respuesta. Cambié File> Build, Execution, Deployment> Java Compiler> Project bytecode version: 1.8. Sin embargo, no puedo cambiar el nivel de idioma del Módulo y el nivel de idioma del Proyecto a 1.8 porque no hay opción para eso. Todavía recibo el mismo error a continuación.

Error

Código

package cs4321.project2;

import java.io.FileReader;
import net.sf.jsqlparser.parser.CCJSqlParser;
import net.sf.jsqlparser.statement.Statement;
import net.sf.jsqlparser.statement.select.Select;

public class Parser {
    private static final String queriesFile = "resources/input/queries.sql";

    public static void main(String[] args) {
        try {
            CCJSqlParser parser = new CCJSqlParser(new FileReader(queriesFile));
            Statement statement;
            while ((statement = parser.Statement()) != null) {
                System.out.println("Read statement: " + statement);
                Select select = (Select) statement;
                System.out.println("Select body is " + select.getSelectBody());
            }
        } catch (Exception e) {
            System.err.println("Exception occurred during parsing");
            e.printStackTrace();
        }
    }
}

Respuestas a la pregunta(6)

Su respuesta a la pregunta