Class AbstractGenerateBdmMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- org.bonitasoft.plugin.bdm.codegen.AbstractGenerateBdmMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo
- Direct Known Subclasses:
GenerateBdmDaoClientSourceMojo,GenerateBdmModelSourceMojo
public abstract class AbstractGenerateBdmMojo extends org.apache.maven.plugin.AbstractMojo
-
-
Field Summary
Fields Modifier and Type Field Description protected FilebdmModelFileThe path to a Business Object Model descriptor file.protected FileoutputFolderThe path to the output folder where the source code is generated.protected org.apache.maven.project.MavenProjectproject
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract Predicate<Path>excludedGeneratedSources()voidexecute()
-
-
-
Field Detail
-
bdmModelFile
@Parameter(required=true) protected File bdmModelFile
The path to a Business Object Model descriptor file.- Since:
- 0.1.0
-
outputFolder
@Parameter(defaultValue="${project.build.directory}/generated-sources/java") protected File outputFolderThe path to the output folder where the source code is generated.- Since:
- 0.1.0
-
project
@Parameter(defaultValue="${project}", required=true, readonly=true) protected org.apache.maven.project.MavenProject project
-
-