Where is groovy.swing.factory.BindProxyFactory? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T10:56:27Zhttp://stackoverflow.com/feeds/question/295073http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295073/where-is-groovy-swing-factory-bindproxyfactory0Where is groovy.swing.factory.BindProxyFactory?lutz2008-11-17T07:48:26Z2008-12-30T17:53:30Z
<p>When trying to use GraphicsBuilder, I get a java.lang.NoClassDefFoundError for groovy.swing.factory.BindProxyFactory.</p>
<p>This is my environment:</p>
<pre><code>% java -version
java version "1.6.0_10"
Java(TM) SE Runtime Environment (build 1.6.0_10-b33)
Java HotSpot(TM) Server VM (build 11.0-b15, mixed mode)
% groovy --version
Groovy Version: 1.5.7 JVM: 1.6.0_10
% ls ~/.groovy/lib/graphicsbuilder*
graphicsbuilder-0.6.1.jar
...
</code></pre>
<p>And this is what I try to do:</p>
<pre><code> % groovysh
Groovy Shell (1.5.7, JVM: 1.6.0_10)
Type 'help' or '\h' for help.
-------------------------------------------------------------------------------
groovy:000> import groovy.swing.SwingBuilder
groovy:000> import groovy.swing.j2d.GraphicsBuilder
groovy:000> import groovy.swing.j2d.GraphicsPanel
groovy:000> def gb = new GraphicsBuilder()
ERROR java.lang.NoClassDefFoundError: groovy.swing.factory.BindProxyFactory
at groovysh_evaluate.run (groovysh_evaluate:5)
...
</code></pre>
<p>Where is BindProxyFactoryBean?</p>
http://stackoverflow.com/questions/295073/where-is-groovy-swing-factory-bindproxyfactory/331478#3314781Answer by shemnon for Where is groovy.swing.factory.BindProxyFactory?shemnon2008-12-01T17:05:53Z2008-12-01T17:05:53Z<p>It's in the Groovy 1.6 builds, not the 1.5.7 builds. Apparently GfxBuilder 6.1 was built against the Groovy 1.6 codebase.</p>
http://stackoverflow.com/questions/295073/where-is-groovy-swing-factory-bindproxyfactory/400974#4009740Answer by for Where is groovy.swing.factory.BindProxyFactory?2008-12-30T17:53:30Z2008-12-30T17:53:30Z<p>Yes, that is correct. Groovy 1.6.x is required for GfxBuilder 6.1 and onwards.</p>