You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2019/11/22 15:27:15 UTC

[groovy] branch GROOVY_3_0_X updated: Fix the failing build: add missing import

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

sunlan pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new 7b28056  Fix the failing build: add missing import
7b28056 is described below

commit 7b28056eb956623e397420a14bac0f23b426c51d
Author: Daniel Sun <su...@apache.org>
AuthorDate: Fri Nov 22 23:27:08 2019 +0800

    Fix the failing build: add missing import
---
 .../groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy b/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
index c50fca2..4d729a7 100644
--- a/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
+++ b/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
@@ -18,6 +18,7 @@
  */
 package groovy.util
 
+import groovy.cli.commons.OptionAccessor
 import org.apache.commons.cli.CommandLineParser
 import org.apache.commons.cli.HelpFormatter