You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/09/12 22:04:30 UTC

[maven-verifier] branch master updated: Drop method addCliOptions

This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-verifier.git


The following commit(s) were added to refs/heads/master by this push:
     new 76b0ffe  Drop method addCliOptions
76b0ffe is described below

commit 76b0ffe3228dbccdccbc0bdccb618059e6bee4b7
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Tue Sep 13 00:02:41 2022 +0200

    Drop method addCliOptions
    
    method was introduced in: f2ff914753f71515d1ea2390b4713669ce70e4be
    and deprecated in:  bbc5aee94be10444f25c16fba1180bc600b2c903
    
    All commits in master without release, so can be removed
---
 .../java/org/apache/maven/shared/verifier/Verifier.java    | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/main/java/org/apache/maven/shared/verifier/Verifier.java b/src/main/java/org/apache/maven/shared/verifier/Verifier.java
index fc1a78b..e50d4b7 100644
--- a/src/main/java/org/apache/maven/shared/verifier/Verifier.java
+++ b/src/main/java/org/apache/maven/shared/verifier/Verifier.java
@@ -1664,20 +1664,6 @@ public class Verifier
         cliArguments.add( cliArgument );
     }
 
-    /**
-     * 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()} during execution.
-     *
-     * @param options an arguments list to add
-     * @deprecated
-     */
-    @Deprecated
-    public void addCliOptions( String... options )
-    {
-        addCliArguments( options );
-    }
-
     /**
      * Add a command line arguments, each argument must be set separately one by one.
      * <p>