vote up 2 vote down star
1

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.

I was thinking of creating a maven plugin with a codegen goal that is called during the build process.

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?

Are there any existing plugins that can be configured to generate default class implementations?

flag

2 Answers

vote up 2 vote down check

Sources should go in {project.build.directory}/generated-sources

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.

A plugin like the maven-jspc-plugin 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.

link|flag
It's normal that they go into a subdirectory of generated-sources. I found that the NetBeans support assumes this. – Dominic Mitchell Apr 20 at 10:08
More completely, they should go into {project.build.directory}/generated-sources/<plugin-id> – rtenhove Sep 17 at 13:33
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.