Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Groovy doesn't start on Windows 7 64

Tags:

windows

groovy

If I type groovy in cmd, nothing happens. I can see new process find.exe that consumes 25% of CPU time for 30 minutes. If I kill it the console will display

ERROR: JAVA_HOME is set to invalid directory: $CORRECT_JDK_PATH

How can I fix it?

like image 353
fedor.belov Avatar asked Jan 18 '23 11:01

fedor.belov


1 Answers

It's a known issue. Native launcher is 32 bit executable and it cannot load 64-bit JVM : http://jira.codehaus.org/browse/GMOD-222

I use groovyconsole.bat

like image 57
VR- Avatar answered Feb 05 '23 02:02

VR-