Slawomir Jaranowski created MSHARED-1128: --------------------------------------------
Summary: Deprecate all executeGoal(s) methods Key: MSHARED-1128 URL: https://issues.apache.org/jira/browse/MSHARED-1128 Project: Maven Shared Components Issue Type: Improvement Components: maven-verifier Reporter: Slawomir Jaranowski Methods {{executeGoal(s)}} take as argument Maven goal for executing test. >From command line executing perspective all of goals are next cli arguments. So instead of: {code} verifier.executeGoal( "package" ); {code} we can use: {code} verifier.addCliOption( "package" ); verifier.execute(); {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)