com.flextrade.builder.MatcherGeneratorMojo 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.MatcherGenerator;
/**
* Echos an object string to the output screen.
* @goal build-matchers
* @requiresProject true
*/
public class MatcherGeneratorMojo extends AbstractBuilderMojo {
public MatcherGeneratorMojo() {
super(new MatcherGenerator());
}
}