Skip to content

Commit

Permalink
verbose parameter was converted to a String rather than a boolean
Browse files Browse the repository at this point in the history
value.

Changes in Plugins according to changes in kit. See
fabric8io/docker-maven-plugin#917
  • Loading branch information
rohanKanojia committed Jun 18, 2019
1 parent 00f09e6 commit 17543fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public abstract class AbstractDockerMojo extends AbstractMojo implements ConfigH

// For verbose output
@Parameter(property = "docker.verbose", defaultValue = "false")
protected boolean verbose;
protected String verbose;

// The date format to use when putting out logs
@Parameter(property = "docker.logDate")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public abstract class AbstractJshiftMojo extends AbstractMojo {

// For verbose output
@Parameter(property = "jshift.verbose", defaultValue = "false")
protected boolean verbose;
protected String verbose;

// Settings holding authentication info
@Parameter(defaultValue = "${settings}", readonly = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public class WatchMojo extends AbstractDockerMojo {

// For verbose output
@Parameter(property = "jshift.verbose", defaultValue = "false")
protected boolean verbose;
protected String verbose;

@Component
protected RepositorySystem repositorySystem;
Expand Down

0 comments on commit 17543fb

Please sign in to comment.