Package com.carrotsearch.hppc.generator
Class TemplateProcessorMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- com.carrotsearch.hppc.generator.TemplateProcessorMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled
,org.apache.maven.plugin.Mojo
@Mojo(name="template-processor", defaultPhase=GENERATE_SOURCES, threadSafe=true, requiresProject=true) public class TemplateProcessorMojo extends org.apache.maven.plugin.AbstractMojo
Maven mojo applying preprocessor templates.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
attachSources
boolean
incremental
java.io.File
outputDir
java.io.File
templatesDir
boolean
verbose
-
Constructor Summary
Constructors Constructor Description TemplateProcessorMojo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute()
-
-
-
Field Detail
-
verbose
@Parameter(defaultValue="false") public boolean verbose
-
incremental
@Parameter(property="template.processor.incremental", defaultValue="true") public boolean incremental
-
attachSources
@Parameter(required=true) public java.lang.String attachSources
-
templatesDir
@Parameter(required=true) public java.io.File templatesDir
-
outputDir
@Parameter(required=true) public java.io.File outputDir
-
-