Code generation in Maven - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T02:36:14Zhttp://stackoverflow.com/feeds/question/765060http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/765060/code-generation-in-maven2Code generation in Mavenparkrhttp://stackoverflow.com/users/531912009-04-19T08:15:01Z2009-04-19T20:55:59Z
<p>I want to autogenerate some java classes from interfaces. My first thought was to write a code generator, and integrate it as a maven plugin.</p>
<p>I was thinking of creating a maven plugin with a codegen goal that is called during the build process.</p>
<p>So if I choose this route, how do I provide the plugin with the interfaces to be processed? And where should the generated files go?</p>
<p>Are there any existing plugins that can be configured to generate default class implementations?</p>
http://stackoverflow.com/questions/765060/code-generation-in-maven/765362#7653620Answer by araqnid for Code generation in Mavenaraqnidhttp://stackoverflow.com/users/851342009-04-19T12:44:33Z2009-04-19T12:44:33Z<p>Maybe have a look at the XDoclet Maven plugin- XDoclet is often used for generating sources from doclet-style markup in classes (e.g. autogenerating MBean interfaces from implementations) and that sounds similar to what you're doing.</p>
http://stackoverflow.com/questions/765060/code-generation-in-maven/766081#7660812Answer by krosenvold for Code generation in Mavenkrosenvoldhttp://stackoverflow.com/users/236912009-04-19T20:55:59Z2009-04-19T20:55:59Z<p>Sources should go in {project.build.directory}/generated-sources</p>
<p>Most plugins take configuration passed through the plugin configuration section in the pom. You can use default values as well, or an annotation and classpath scanning.</p>
<p>A plugin like the <a href="http://mojo.codehaus.org/jspc-maven-plugin/usage.html" rel="nofollow">maven-jspc-plugin</a> generates code, which you could take a look at. The "Better Builds With Maven" e-book also contains a reasonably comprehensive chapter on writing plugins.</p>