Code generation in Maven - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T02:36:14Z http://stackoverflow.com/feeds/question/765060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/765060/code-generation-in-maven 2 Code generation in Maven parkr http://stackoverflow.com/users/53191 2009-04-19T08:15:01Z 2009-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#765362 0 Answer by araqnid for Code generation in Maven araqnid http://stackoverflow.com/users/85134 2009-04-19T12:44:33Z 2009-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#766081 2 Answer by krosenvold for Code generation in Maven krosenvold http://stackoverflow.com/users/23691 2009-04-19T20:55:59Z 2009-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>