maven compile groovy - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T03:52:42Zhttp://stackoverflow.com/feeds/question/1022567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1022567/maven-compile-groovy1maven compile groovyJeff Storey2009-06-20T21:13:43Z2009-06-20T22:02:30Z
<p>I have a situation where some of my groovy code references my java files, but I also have different java files that reference the same groovy code. When trying to compile in maven, I either need to compile the groovy before or after the java, and that won't really work since the groovy code depends on some java files, and different java files depend on the groovy code. Is there a way to handle this sort of dependency?</p>
http://stackoverflow.com/questions/1022567/maven-compile-groovy/1022589#1022589-1Answer by rich for maven compile groovyrich2009-06-20T21:23:22Z2009-06-20T21:23:22Z<p>You can partition your code in layers and have lower layers call upper layers but never vice versa. For example, in a Web app you can have a view layer, a service layer, and a persistence layer. The view layer calls the service layer and the service layer calls the persistence layer, but the persistence layer will never call the service layer or the view layer. If you want groovy/java code to exist in the same layer then make sure one calls the other but they don't both call each other. The bottom line is that you should avoid bi-directional dependencies.</p>
http://stackoverflow.com/questions/1022567/maven-compile-groovy/1022600#10226002Answer by Robert Munteanu for maven compile groovyRobert Munteanu2009-06-20T21:27:25Z2009-06-20T21:32:44Z<p>Yes, just use <a href="http://groovy.codehaus.org/GMaven" rel="nofollow">GMaven</a>. Since it's a joint compiler, it automatically manages your java to groovy and groovy to java dependencies.</p>
<p>Briefly, you will need to:</p>
<ul>
<li>include the <code>gmaven-plugin</code> in your <code>pom.xml</code>;</li>
<li>keep your groovy classes under <code>src/main/groovy</code> or <code>src/test/groovy</code>;</li>
<li>bind the gmaven plugin to the relevant lifecycle phases.</li>
</ul>
<p>For more details see <a href="http://groovy.codehaus.org/GMaven%2B-%2BBuilding%2BGroovy%2BProjects" rel="nofollow">building groovy projects</a>.</p>
http://stackoverflow.com/questions/1022567/maven-compile-groovy/1022602#10226022Answer by hohonuuli for maven compile groovyhohonuuli2009-06-20T21:28:30Z2009-06-20T21:28:30Z<p>You should be able to compile your code by adding the <a href="http://groovy.codehaus.org/GMaven" rel="nofollow">gmaven</a> plugin to your maven pom.xml. It generates Java stubs of your groovy code to deal with the type of inter-language referencing you're dealing with. I use it quite a bit and it works very well.</p>