Loading src/main/java/fr/emse/gitlab/saref/CMDConfigurations.java +6 −1 Original line number Diff line number Diff line Loading @@ -52,6 +52,10 @@ public class CMDConfigurations { public static final String ARG_INCLUDE_MASTER_LONG = "master"; public static final String ARG_INCLUDE_MASTER_MAN = "Check the master branches of the remote repositories listed in the `.saref-repositories.yml` document"; public static final String ARG_RELEASE = "x"; public static final String ARG_RELEASE_LONG = "release"; public static final String ARG_RELEASE_MAN = "Run in strict mode, only when on a branch `prerelease-vx.y.z` or `release-vx.y.z`"; public static final String ARG_VERBOSE = "v"; public static final String ARG_VERBOSE_LONG = "verbose"; public static final String ARG_VERBOSE_MAN = "Use verbose mode. (For example, use SPARQL-Generate in --debug-template mode when generating the documentation)"; Loading @@ -72,6 +76,7 @@ public class CMDConfigurations { .addOption(ARG_IGNORE_GIT, ARG_IGNORE_GIT_LONG, false, ARG_IGNORE_GIT_MAN) .addOption(ARG_NO_SITE, ARG_NO_SITE_LONG, false, ARG_NO_SITE_MAN) .addOption(ARG_INCLUDE_MASTER, ARG_INCLUDE_MASTER_LONG, false, ARG_INCLUDE_MASTER_MAN) .addOption(ARG_RELEASE, ARG_RELEASE_LONG, false, ARG_RELEASE_MAN) .addOption(ARG_VERBOSE, ARG_VERBOSE_LONG, false, ARG_VERBOSE_MAN); } Loading Loading
src/main/java/fr/emse/gitlab/saref/CMDConfigurations.java +6 −1 Original line number Diff line number Diff line Loading @@ -52,6 +52,10 @@ public class CMDConfigurations { public static final String ARG_INCLUDE_MASTER_LONG = "master"; public static final String ARG_INCLUDE_MASTER_MAN = "Check the master branches of the remote repositories listed in the `.saref-repositories.yml` document"; public static final String ARG_RELEASE = "x"; public static final String ARG_RELEASE_LONG = "release"; public static final String ARG_RELEASE_MAN = "Run in strict mode, only when on a branch `prerelease-vx.y.z` or `release-vx.y.z`"; public static final String ARG_VERBOSE = "v"; public static final String ARG_VERBOSE_LONG = "verbose"; public static final String ARG_VERBOSE_MAN = "Use verbose mode. (For example, use SPARQL-Generate in --debug-template mode when generating the documentation)"; Loading @@ -72,6 +76,7 @@ public class CMDConfigurations { .addOption(ARG_IGNORE_GIT, ARG_IGNORE_GIT_LONG, false, ARG_IGNORE_GIT_MAN) .addOption(ARG_NO_SITE, ARG_NO_SITE_LONG, false, ARG_NO_SITE_MAN) .addOption(ARG_INCLUDE_MASTER, ARG_INCLUDE_MASTER_LONG, false, ARG_INCLUDE_MASTER_MAN) .addOption(ARG_RELEASE, ARG_RELEASE_LONG, false, ARG_RELEASE_MAN) .addOption(ARG_VERBOSE, ARG_VERBOSE_LONG, false, ARG_VERBOSE_MAN); } Loading