I am using Eclipse DSL package 2020-09 with Amazon Corette java 11. I followed the instructions mentioned in https://www.eclipse.org/Xtext/documentation/340_lsp_support.html for generating a sample language server. However while running the java application using a xtext ServerLauncher (org.eclipse.xtext.ide.server.ServerLauncher), I just get some warnings and no further information is available. There is no server created as well. Nothing is there in eclipse logs too. What am I missing here?
Console output:
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$2 (file:/C:/Users/yellared/.m2/repository/com/google/inject/guice/3.0/guice-3.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$2
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
Thanks in advance.