Importing Groovy classes in a GWT module in Intellij - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:24:58Zhttp://stackoverflow.com/feeds/question/770471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770471/importing-groovy-classes-in-a-gwt-module-in-intellij0Importing Groovy classes in a GWT module in IntellijTiago Fernandez2009-04-20T23:24:44Z2009-07-15T21:36:52Z
<p>Basically I can't even import Groovy classes in a regular GWT EntryPoint:</p>
<pre>
import com.google.gwt.core.client.EntryPoint; // OK
import groovy.lang.Binding; // NOT OK
import groovy.util.GroovyScriptEngine; // NOT OK
</pre>
<p>Intellij 8.0's inspector keeps telling me this:</p>
<p>Class 'groovy.lang.Binding' is not present in JRE Emulation Library so it cannot be used in client code</p>
<p>Class 'groovy.util.GroovyScriptEngine' is not present in JRE Emulation Library so it cannot be used in client code</p>
<p>Obviously I end up having problems at runtime as well:</p>
<p>[ERROR] Line 11: No source code is available for type groovy.util.GroovyScriptEngine; did you forget to inherit a required module?</p>
<p>[ERROR] Line 12: No source code is available for type groovy.lang.Binding; did you forget to inherit a required module?</p>
<p>I've checked several times my module's dependencies, and groovy-all-1.6.1.jar is correctly defined in there. I'm probably missing something elsewhere...</p>
<p>Any idea?</p>
http://stackoverflow.com/questions/770471/importing-groovy-classes-in-a-gwt-module-in-intellij/770528#7705282Answer by mP for Importing Groovy classes in a GWT module in IntellijmP2009-04-20T23:52:20Z2009-04-20T23:52:20Z<p>Attempting to use Groovy makes no sense as the Gwt compiler only understands the Java language syntax along it it's subset of Java libraries. The compiler works on source not byte code. One reason includes the magic comments necessary to stash javascript (JSNI). The compiler is actually scanning the source path for *.java not *.class files.</p>
<p>Read the doco fir a more in depth understanding.</p>
http://stackoverflow.com/questions/770471/importing-groovy-classes-in-a-gwt-module-in-intellij/1134230#11342301Answer by k s for Importing Groovy classes in a GWT module in Intellijk s2009-07-15T21:36:52Z2009-07-15T21:36:52Z<p>In some sense it would be pretty cool to have a groovy language gwt. </p>
<p>But then why go from one dynamic language to another? The point of gwt I thought was to get static typing and easy debugging of java.</p>