Hoping a kindred soul can assist with this odd windows problem
I am attempting to run a grails app on windows and am unable to get grails to start.
I have both downloaded the 2.0.3 distro from grails.org and pulled and built the source off of github.
The error I receive is as follows:
Error: Could not find or load main class
org.codehaus.groovy.grails.cli.support.GrailsStarter
The searching I've done to find solutions to this problem (which some people have had) have yielded no help: All I've found is suggestions that my environment variables are improperly set up. (e.g. here)
I felt I was quite careful in setting up my variables though. I have the following configured, all under System Variables:
JAVA_HOME C:\java\jdk7
GRAILS_HOME C:\grails\2.0.3 // also set it to C:\grails\source\grails-core when dlded from source
GROOVY_HOME C:\groovy\1.8.6
PATH %JAVA_HOME%\bin;%GRAILS_HOME%\bin;%GROOVY_HOME%\bin;$PATH
I've tried things both before and after downloading groovy and setting that environment variable, and I'm afraid I'm quite lost at this point. Groovy starts just fine, java starts just fine, but grails is unable to start.
Is anyone else in Windows having this issue with the latest grails version?