JDE for Emacs for JDK 6.10

Is there a JDE version for emacs that supports JDK 6.10? I could not find information about this. While it starts, every time I try to compile files, JDE says that it does not recognize my version of the JDK and does not return to the assumption that it is a version of Java5.

+6
java emacs
source share
3 answers

I made the following settings for JDE:

'(jde-bug-debugger-host-address "127.0.0.1") '(jde-bug-jre-home "/usr/lib/jvm/java-6-sun") '(jde-compile-option-debug (quote ("all" (t nil nil)))) '(jde-debugger (quote ("jdb"))) '(jde-global-classpath (quote ("." "/usr/share/java/" "/usr/lib/jvm/java-6-sun/"))) '(jde-jdk-doc-url "/usr/share/doc/sun-java6-jdk/html/api/index.html") '(jde-jdk-registry (quote (("1.5" . "/usr/lib/jvm/java-6-sun")))) '(jde-regexp-jar-file "/usr/share/java/regexp.jar") '(jde-sourcepath (quote ("."))) 

Therefore, it compiles without complaint, although I have jdk 1.6.0.07.

+5
source share

You can set your paths in the configuration settings by โ€œregisteringโ€ the JDK version with Mx customize-variable and selecting jde-jdk-registry . Save this state, then again Mx customize-variable , configure jde-jdk and select the one you want.

That should do it; if not, give us a little more detailed information.

+1
source share

Yes, I did it. The problem is that I call the 'jde-compile message' JDE does not recognize the JDK6.0.10 JDK. Suppose JDK 1.5 Javac? ". It also doesn't seem like Java6 constructs, such as annotations, were defined in syntax or indentation rules.

0
source share

All Articles