I made a new download of Eclipse Juno and installed the Google App Engine SDK. After that, when I start eclipse, I get an error
Could not find main class: com.google.appengine.tools.enhancer.Enhance. The program will exit.
Edit: Looks like there is a Builder that is being added by the Google AppEngine plugin. Eclipse tries to find this "Builder" and fails. I added the path to this builder, which is in the plugins \ com.google.appengine.eclipse.sdkbundle_1.8.3 \ appengine-java-sdk-1.8.3 \ lib for my system class path.
Now i get another error
DataNucleus Enhancer (version 3.1.1): Class Enhancement August 21, 2013 8:48:14 org.datanucleus.metadata.MetaDataManager loadClasses SEVERE: Class "in.chimanrao.model.Account" not found in CLASSPATH. Check your specifications and your CLASSPATH. org.datanucleus.exceptions.ClassNotResolvedException: Class "in.chimanrao.model.Account" not found in CLASSPATH. Check your specifications and your CLASSPATH.
How do I pass the user path to this DataNucleus Enhancer?
source share