[DEV] start integrate death
This commit is contained in:
parent
3619f28313
commit
85fb5f5c81
@ -20,5 +20,10 @@
|
|||||||
<attribute name="module" value="true"/>
|
<attribute name="module" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
|
<classpathentry combineaccessrules="false" kind="src" path="/atriasoft-death">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
<classpathentry kind="output" path="out/eclipse/classes"/>
|
<classpathentry kind="output" path="out/eclipse/classes"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
@ -9,4 +9,5 @@ open module org.atriasoft.island {
|
|||||||
|
|
||||||
requires transitive io.scenarium.logger;
|
requires transitive io.scenarium.logger;
|
||||||
requires java.base;
|
requires java.base;
|
||||||
|
requires org.atriasoft.death;
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
package org.atriasoft.island;
|
package org.atriasoft.island;
|
||||||
|
|
||||||
|
import org.atriasoft.death.Arguments;
|
||||||
|
|
||||||
public class MainIsland {
|
public class MainIsland {
|
||||||
|
|
||||||
//debug.verbose("List of actions: " + str(actions.get_list_of_action()))
|
//debug.verbose("List of actions: " + str(actions.get_list_of_action()))
|
||||||
|
static {
|
||||||
my_args = arguments.Arguments()
|
Arguments my_args = new Arguments();
|
||||||
my_args.add_section("option", "Can be set one time in all case")
|
my_args.addSection("option", "Can be set one time in all case");
|
||||||
my_args.add("h", "help", desc="Display this help")
|
my_args.add("h", "help", null, "Display this help");
|
||||||
my_args.add("v", "verbose", list=[
|
my_args.add("v", "verbose", {
|
||||||
["0","None"],
|
["0","None"],
|
||||||
["1","error"],
|
["1","error"],
|
||||||
["2","warning"],
|
["2","warning"],
|
||||||
@ -16,7 +17,7 @@ my_args.add("v", "verbose", list=[
|
|||||||
["4","debug"],
|
["4","debug"],
|
||||||
["5","verbose"],
|
["5","verbose"],
|
||||||
["6","extreme_verbose"],
|
["6","extreme_verbose"],
|
||||||
], desc="display debug level (verbose) default =2")
|
}, desc="display debug level (verbose) default =2")
|
||||||
my_args.add("c", "color", desc="Display message in color")
|
my_args.add("c", "color", desc="Display message in color")
|
||||||
my_args.add("n", "no-fetch-manifest", haveParam=false, desc="Disable the fetch of the manifest")
|
my_args.add("n", "no-fetch-manifest", haveParam=false, desc="Disable the fetch of the manifest")
|
||||||
my_args.add("F", "filter", haveParam=true, desc="Filter the action on a list of path or subpath: -f library")
|
my_args.add("F", "filter", haveParam=true, desc="Filter the action on a list of path or subpath: -f library")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user