michael-o commented on code in PR #41: URL: https://github.com/apache/maven-verifier/pull/41#discussion_r964121301
########## src/main/java/org/apache/maven/shared/verifier/Verifier.java: ########## @@ -1599,11 +1576,28 @@ public void setCliOptions( List<String> cliOptions ) this.cliOptions = cliOptions; } + /** + * Add a command line argument, each argument must be set separately one by one. + * <p> + * <code>${basedir}</code> in argument will be replaced by value of {@link #getBasedir()} + * @param option an argument to add + */ public void addCliOption( String option ) { cliOptions.add( option ); } + /** + * Add a command line arguments, each argument must be set separately one by one. + * <p> + * <code>${basedir}</code> in argument will be replaced by value of {@link #getBasedir()} Review Comment: ditto -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org