Skip to content

Commit

Permalink
Update documentation and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Apr 11, 2023
1 parent ce47b42 commit 26baa91
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class PluginCompatTesterCli implements Callable<Integer> {
arity = "1",
paramLabel = "plugin",
description =
"Comma-separated list of plugin artifact IDs to test. If not set, every plugin in the WAR will be tested.")
"Comma-separated set of plugin artifact IDs to test. If not set, every plugin in the WAR will be tested.")
private Set<String> includePlugins;

@CheckForNull
Expand All @@ -86,7 +86,7 @@ public class PluginCompatTesterCli implements Callable<Integer> {
arity = "1",
paramLabel = "plugin",
description =
"Comma-separated list of plugin artifact IDs to skip. If not set, only the plugins specified by --plugins will be tested (or all plugins otherwise).")
"Comma-separated set of plugin artifact IDs to skip. If not set, only the plugins specified by --plugins will be tested (or all plugins otherwise).")
private Set<String> excludePlugins;

@CheckForNull
Expand All @@ -95,7 +95,7 @@ public class PluginCompatTesterCli implements Callable<Integer> {
split = ",",
arity = "1",
paramLabel = "hook",
description = "Comma-separated list of hooks to skip. If not set, all hooks will be executed.")
description = "Comma-separated set of hooks to skip. If not set, all hooks will be executed.")
private Set<String> excludeHooks;

@CheckForNull
Expand Down Expand Up @@ -142,7 +142,7 @@ public class PluginCompatTesterCli implements Callable<Integer> {
split = ",",
arity = "1",
paramLabel = "jar",
description = "Comma-separated list of paths to external hooks JARs.",
description = "Comma-separated set of paths to external hooks JARs.",
converter = ExistingFileTypeConverter.class)
private Set<File> externalHooksJars;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ public class PluginCompatTesterConfig {
@NonNull
private final File workingDir;

// List of plugin artifact ids on which tests will be performed
// Set of plugin artifact ids on which tests will be performed
// If empty, tests will be performed on every plugins retrieved from update center
@NonNull
private Set<String> includePlugins = Set.of();

// List of plugin artifact ids on which tests will be not performed
// Set of plugin artifact ids on which tests will be not performed
// If empty, tests will be performed on every includePlugins found
@NonNull
private Set<String> excludePlugins = Set.of();

// List of hooks that will not be executed
// Set of hooks that will not be executed
// If empty, all hooks will be executed
@NonNull
private Set<String> excludeHooks = Set.of();
Expand Down

0 comments on commit 26baa91

Please sign in to comment.