How to use Java pakages with Groovy - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T07:20:00Zhttp://stackoverflow.com/feeds/question/1005638http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1005638/how-to-use-java-pakages-with-groovy0How to use Java pakages with Groovytentakel2009-06-17T07:43:11Z2009-06-20T01:38:38Z
<p>I'm at school and we are doing this java stuff. We use a special library named sum.kern: <a href="http://www.mg-werl.de/sum/bjw.zip" rel="nofollow">http://www.mg-werl.de/sum/bjw.zip</a></p>
<p>I want to use Groovy instead of Java. But I can't get groovy to use this library. If I add the jar in grape and try to import sum.kern and create a sum.kern.Bildschirm it says that it is not able to find it. How to do it?</p>
http://stackoverflow.com/questions/1005638/how-to-use-java-pakages-with-groovy/1005693#10056931Answer by Vinegar for How to use Java pakages with GroovyVinegar2009-06-17T08:03:57Z2009-06-17T08:03:57Z<p>I don't think it should be a problem, its pretty straight forward. The only requirement is to have the library in your classpath.</p>
<p>Are you able to import the package successfully? </p>
<p>It doesn't matter though, What IDE are you using, BTW?</p>
http://stackoverflow.com/questions/1005638/how-to-use-java-pakages-with-groovy/1020717#10207170Answer by seansand for How to use Java pakages with Groovyseansand2009-06-20T01:38:38Z2009-06-20T01:38:38Z<p>You should have a "groovy-starter.conf" file that specifies the directories in which groovy looks for jar files. It should be in the "conf" directory within groovy.home (for example, on my machine it is "C:\groovy\Groovy-1.5.6\conf\groovy-starter.conf").</p>
<p>If the jar file containing the classes you want to import are within one of these directories, you should be able to import it no problem. Alternatively, you could add the directory that the jar is currently in to your groovy-starter.conf file.</p>