Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JDE for Emacs for JDK 6.10

Tags:

java

emacs

Is there a version of JDE for emacs that supports the JDK 6.10? I haven't been able to find any information on this. While it runs, every time I attempt to compile files the JDE says that it doesn't recognize my JDK version and reverts to assuming it is a Java5 version.

like image 218
Nathaniel Flath Avatar asked Dec 19 '08 22:12

Nathaniel Flath


1 Answers

I've made following customizations 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 (".")))

So it compiles without complaints, although I have jdk 1.6.0.07.

like image 185
Anton Nazarov Avatar answered Oct 08 '22 05:10

Anton Nazarov