Package org.nuiton.jaxx.plugin
Class GenerateHelpSearchMojo
java.lang.Object
org.apache.maven.plugin.AbstractMojo
org.nuiton.plugin.AbstractPlugin
org.nuiton.jaxx.plugin.AbstractJaxxMojo
org.nuiton.jaxx.plugin.AbstractGenerateHelpMojo
org.nuiton.jaxx.plugin.GenerateHelpSearchMojo
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo,org.nuiton.plugin.Plugin,org.nuiton.plugin.PluginWithEncoding
@Mojo(name="generate-help-search",
defaultPhase=PROCESS_SOURCES,
requiresProject=true,
requiresDependencyResolution=COMPILE)
@Execute(goal="generate-help-files")
public class GenerateHelpSearchMojo
extends AbstractGenerateHelpMojo
Generate the javax search index help for your project.
The current files should be generated always in a generated directory and not in
your src directories (this is mainly binary files not to be stored in scm system)...
- Since:
- 2.0.0
- Author:
- Tony Chemit - chemit@codelutin.com
-
Nested Class Summary
Nested classes/interfaces inherited from class org.nuiton.jaxx.plugin.AbstractJaxxMojo
AbstractJaxxMojo.JaxxFileUpdaterNested classes/interfaces inherited from interface org.nuiton.plugin.Plugin
org.nuiton.plugin.Plugin.InitState, org.nuiton.plugin.Plugin.Packaging -
Field Summary
Fields Modifier and Type Field Description protected java.io.FileinputHelpThe directory where to pick content files to generate the index.protected java.io.FileoutputHelpSearchThe directory where to create or update help search index files.protected java.lang.StringtimestampFields inherited from class org.nuiton.jaxx.plugin.AbstractGenerateHelpMojo
generateSearch, localesFields inherited from class org.nuiton.jaxx.plugin.AbstractJaxxMojo
generateHelpFields inherited from interface org.apache.maven.plugin.Mojo
ROLE -
Constructor Summary
Constructors Constructor Description GenerateHelpSearchMojo() -
Method Summary
Modifier and Type Method Description protected booleancheckSkip()protected voiddoActionForLocale(java.util.Locale locale, boolean isDefaultLocale, java.io.File localizedTarget, java.lang.String localePath)Do the action for the given locale.protected voidgenerateSearchIndex(java.io.File source, java.io.File target, java.util.Locale locale)java.io.FilegetTargetDirectory()voidinit()protected voidpostDoAction()Call back after doing all stuff for all locales declaredprotected voidpreDoAction()Call back before doing all stuff for all locales declaredvoidsetTargetDirectory(java.io.File targetDirectory)Methods inherited from class org.nuiton.jaxx.plugin.AbstractGenerateHelpMojo
cleanHelpIdsStore, doAction, getHelpIdsFilename, getHelpIdsStoreFile, getMergeHelpIdsFilename, getMergeHelpIdsStoreFile, getOutputHelpIds, loadHelpIds, removeQuote, setHelpIdsFilename, setMergeHelpIdsFilename, setOutputHelpIds, storeHelpIdsMethods inherited from class org.nuiton.jaxx.plugin.AbstractJaxxMojo
checkPackaging, getEncoding, getLastModified, getProject, isForce, isVerbose, setEncoding, setForce, setProject, setVerboseMethods inherited from class org.nuiton.plugin.AbstractPlugin
acceptPackaging, addCompileSourceRoots, addDirectoryToUrlsList, addResourceDir, addTestCompileSourceRoots, addTestResourceDir, addUrlToUrlsList, afterExecute, backupFile, checkEncoding, checkResource, checkRunOnceDone, copyFile, createDirectoryIfNecessary, createNewFile, deleteFile, execute, getBackupFile, getFileFromBasedir, getFilesToTreate, getFilesToTreateForRoots, getRootProject, getTemplate, hasClassPath, initClassLoader, isExecutionRoot, isFileNewerThanPomFile, needInvoke, needInvoke, rejectPackaging, removeCompileSourceRoots, removeTestCompileSourceRoots, renameFile, writeFileMethods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContextMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.maven.plugin.Mojo
execute, getLog, setLog
-
Field Details
-
outputHelpSearch
@Parameter(property="jaxx.outputHelpSearch", defaultValue="${project.basedir}/target/generated-sources/help", required=true) protected java.io.File outputHelpSearchThe directory where to create or update help search index files.- Since:
- 2.0.0
-
inputHelp
@Parameter(property="jaxx.inputHelp", defaultValue="${project.basedir}/src/main/help", required=true) protected java.io.File inputHelpThe directory where to pick content files to generate the index.- Since:
- 2.0.0
-
timestamp
protected java.lang.String timestamp
-
-
Constructor Details
-
GenerateHelpSearchMojo
public GenerateHelpSearchMojo()
-
-
Method Details
-
init
public void init() throws java.lang.Exception- Overrides:
initin classAbstractGenerateHelpMojo- Throws:
java.lang.Exception
-
getTargetDirectory
public java.io.File getTargetDirectory()- Specified by:
getTargetDirectoryin classAbstractJaxxMojo
-
setTargetDirectory
public void setTargetDirectory(java.io.File targetDirectory)- Specified by:
setTargetDirectoryin classAbstractJaxxMojo
-
checkSkip
protected boolean checkSkip()- Overrides:
checkSkipin classAbstractGenerateHelpMojo
-
doActionForLocale
protected void doActionForLocale(java.util.Locale locale, boolean isDefaultLocale, java.io.File localizedTarget, java.lang.String localePath) throws java.lang.ExceptionDescription copied from class:AbstractGenerateHelpMojoDo the action for the given locale.- Specified by:
doActionForLocalein classAbstractGenerateHelpMojo- Parameters:
locale- the locale to treateisDefaultLocale-trueif given locale is de the default localelocalizedTarget- where are stored help files for the given localelocalePath- the locale path to use (isdefaultif given locale is default).- Throws:
java.lang.Exception- if any pb
-
preDoAction
protected void preDoAction() throws java.io.IOExceptionDescription copied from class:AbstractGenerateHelpMojoCall back before doing all stuff for all locales declared- Specified by:
preDoActionin classAbstractGenerateHelpMojo- Throws:
java.io.IOException
-
postDoAction
protected void postDoAction()Description copied from class:AbstractGenerateHelpMojoCall back after doing all stuff for all locales declared- Specified by:
postDoActionin classAbstractGenerateHelpMojo
-
generateSearchIndex
protected void generateSearchIndex(java.io.File source, java.io.File target, java.util.Locale locale) throws java.lang.Exception- Throws:
java.lang.Exception
-