Ошибка Java java: exporting a package from system module jdk.compiler is not allowed with --release
java: exporting a package from system module jdk.compiler is not allowed with --release
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) throws IOException {
final URL url = new URL("http://jsonplaceholder.typicode.com/posts?_limit=10");
final HttpURLConnection con = (HttpURLConnection) url.openConnection();
System.out.println(url);
System.out.println(con);
}
}