jaxx:generate-help-ids
Nom complet :
org.nuiton.jaxx:jaxx-maven-plugin:2.46:generate-help-ids
Description :
Generate the help ids files from the previous jaxx generation.
Created: 22 déc. 2009
Attributs :
- Exige un projet Maven pour être exécuté.
- Depuis la version :
2.0.0
. - S'associe par défaut dans la phase du cycle de vie :
process-sources
.
Paramètres requis
Nom | Type | Depuis | Description |
---|---|---|---|
<generateSearch> |
boolean |
1.3 |
Flag to generate the search index. Valeur par défaut : true .Propriété utilisateur : jaxx.generateSearch . |
<helpIdsFilename> |
String |
1.3 |
The store of helpIds generated by the goal
GenerateMojo and then used by the goal
GenerateHelpMojo .Valeur par défaut : helpIds.txt .Propriété utilisateur : jaxx.helpIdsFilename . |
<inputHelpDirectory> |
File |
2.5.12 |
Directory where to merge (create) input files.
Note: Only used when mergeIdsToInput
parameter is on.Valeur par défaut : src/main/help .Propriété utilisateur : jaxx.inputHelpDirectory . |
<inputHelpFilenamePrefix> |
String |
2.5.12 |
Prefix of input files. Note:
-locale.properties will be added to each generated
file (example: helpMapping-fr_FR.properties ).
Note: Only used when mergeIdsToInput
parameter is on.Valeur par défaut : helpMapping .Propriété utilisateur : jaxx.inputHelpFilenamePrefix . |
<locales> |
String |
2.0.0 |
The locales to generate for help, separeted by comma. The first
locale given is the default locale. Propriété utilisateur : jaxx.locales . |
<mergeHelpIdsFilename> |
String |
1.3 |
The store of cumulate helpIds generated by the goal
GenerateMojo and then used by the goal
GenerateHelpMojo .Valeur par défaut : helpIds-all.txt .Propriété utilisateur : jaxx.mergeHelpIdsFilename . |
<mergeIdsToInput> |
boolean |
2.5.12 |
Flag to merge ids into input directory. Valeur par défaut : false .Propriété utilisateur : jaxx.mergeIdsToInput . |
<outputHelpIds> |
File |
1.3 |
Where to generate helpIds files. Valeur par défaut : target/generated-sources/jaxx .Propriété utilisateur : jaxx.outputHelpIds . |
<strictMode> |
boolean |
2.5.12 |
Flag to remove obsolete ids into input files. Important
Note: Be sure to use this after a clean, or using with
jaxx.force property to get all ids of any jaxx files
detected, otherwise you could loose some data. USE WITH CAUTION.
Note: Only used when mergeIdsToInput
parameter is on.Valeur par défaut : false .Propriété utilisateur : jaxx.strictMode . |
Paramètres optionnels
Nom | Type | Depuis | Description |
---|---|---|---|
<encoding> |
String |
2.0.0 |
Encoding used for file generation. Note: If nothing is
filled here, we will use the system property
file.encoding .Valeur par défaut : ${project.build.sourceEncoding} .Propriété utilisateur : jaxx.encoding . |
<force> |
boolean |
2.0.0 |
To force generation of java source for any jaxx files with no
timestamp checking. By default, never force generation. Valeur par défaut : false .Propriété utilisateur : jaxx.force . |
<generateHelp> |
boolean |
1.3 |
Flag to activate help id detection while parsing jaxx files. By
default, not active. Valeur par défaut : false .Propriété utilisateur : jaxx.generateHelp . |
<verbose> |
boolean |
1.3 |
Verbose flag. Valeur par défaut : false .Propriété utilisateur : jaxx.verbose . |
Détails des paramètres
<encoding>
Encoding used for file generation. Note: If nothing is
filled here, we will use the system property
file.encoding
.- Type :
java.lang.String
- Depuis :
2.0.0
- Exigé :
Non
- Propriété utilisateur :
jaxx.encoding
- Défaut :
${project.build.sourceEncoding}
<force>
To force generation of java source for any jaxx files with no
timestamp checking. By default, never force generation.
- Type :
boolean
- Depuis :
2.0.0
- Exigé :
Non
- Propriété utilisateur :
jaxx.force
- Défaut :
false
<generateHelp>
Flag to activate help id detection while parsing jaxx files. By
default, not active.
- Type :
boolean
- Depuis :
1.3
- Exigé :
Non
- Propriété utilisateur :
jaxx.generateHelp
- Défaut :
false
<generateSearch>
Flag to generate the search index.
- Type :
boolean
- Depuis :
1.3
- Exigé :
Oui
- Propriété utilisateur :
jaxx.generateSearch
- Défaut :
true
<helpIdsFilename>
The store of helpIds generated by the goal
GenerateMojo
and then used by the goal
GenerateHelpMojo
.- Type :
java.lang.String
- Depuis :
1.3
- Exigé :
Oui
- Propriété utilisateur :
jaxx.helpIdsFilename
- Défaut :
helpIds.txt
<inputHelpDirectory>
Directory where to merge (create) input files.
Note: Only used when
mergeIdsToInput
parameter is on.- Type :
java.io.File
- Depuis :
2.5.12
- Exigé :
Oui
- Propriété utilisateur :
jaxx.inputHelpDirectory
- Défaut :
src/main/help
<inputHelpFilenamePrefix>
Prefix of input files. Note:
-locale.properties
will be added to each generated
file (example: helpMapping-fr_FR.properties
).
Note: Only used when mergeIdsToInput
parameter is on.- Type :
java.lang.String
- Depuis :
2.5.12
- Exigé :
Oui
- Propriété utilisateur :
jaxx.inputHelpFilenamePrefix
- Défaut :
helpMapping
<locales>
The locales to generate for help, separeted by comma. The first
locale given is the default locale.
- Type :
java.lang.String
- Depuis :
2.0.0
- Exigé :
Oui
- Propriété utilisateur :
jaxx.locales
<mergeHelpIdsFilename>
The store of cumulate helpIds generated by the goal
GenerateMojo
and then used by the goal
GenerateHelpMojo
.- Type :
java.lang.String
- Depuis :
1.3
- Exigé :
Oui
- Propriété utilisateur :
jaxx.mergeHelpIdsFilename
- Défaut :
helpIds-all.txt
<mergeIdsToInput>
Flag to merge ids into input directory.
- Type :
boolean
- Depuis :
2.5.12
- Exigé :
Oui
- Propriété utilisateur :
jaxx.mergeIdsToInput
- Défaut :
false
<outputHelpIds>
Where to generate helpIds files.
- Type :
java.io.File
- Depuis :
1.3
- Exigé :
Oui
- Propriété utilisateur :
jaxx.outputHelpIds
- Défaut :
target/generated-sources/jaxx
<strictMode>
Flag to remove obsolete ids into input files. Important
Note: Be sure to use this after a clean, or using with
jaxx.force
property to get all ids of any jaxx files
detected, otherwise you could loose some data. USE WITH CAUTION.
Note: Only used when mergeIdsToInput
parameter is on.- Type :
boolean
- Depuis :
2.5.12
- Exigé :
Oui
- Propriété utilisateur :
jaxx.strictMode
- Défaut :
false
<verbose>
Verbose flag.
- Type :
boolean
- Depuis :
1.3
- Exigé :
Non
- Propriété utilisateur :
jaxx.verbose
- Défaut :
false