com.flextrade.builder.BuilderGeneratorMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pojobuilder-maven-plugin Show documentation
Show all versions of pojobuilder-maven-plugin Show documentation
Maven Plugin which generates Builders and matchers
package com.flextrade.builder;
import com.flextrade.builder.builder.BuilderGenerator;
/**
* Echos an object string to the output screen.
* @goal build-builders
* @requiresProject true
*/
public class BuilderGeneratorMojo extends AbstractBuilderMojo {
public BuilderGeneratorMojo() {
super(new BuilderGenerator());
}
}