Skip to content

Commit

Permalink
Merge pull request #749 from tlachy/master
Browse files Browse the repository at this point in the history
BugFix: mvn liquibase:generateChangeLog throws IllegalAccessException in AbstractLiquibaseMojo.java
  • Loading branch information
nvoxland committed Apr 4, 2018
2 parents 19c45e3 + 8a3b780 commit 9e9cdbf
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -29,21 +29,21 @@ public class LiquibaseGenerateChangeLogMojo extends
*
* @parameter expression="${liquibase.diffTypes}"
*/
private String diffTypes;
protected String diffTypes;

/**
* Directory where insert statement csv files will be kept.
*
* @parameter expression="${liquibase.dataDir}"
*/
private String dataDir;
protected String dataDir;

/**
* The author to be specified for Change Sets in the generated Change Log.
*
* @parameter expression="${liquibase.changeSetAuthor}"
*/
private String changeSetAuthor;
protected String changeSetAuthor;

/**
* are required. If no context is specified then ALL contexts will be executed.
Expand All @@ -56,7 +56,7 @@ public class LiquibaseGenerateChangeLogMojo extends
*
* @parameter expression="${liquibase.changeSetContext}"
*/
private String changeSetContext;
protected String changeSetContext;

/**
* The target change log file to output to. If this is null then the output will be to the screen.
Expand Down

0 comments on commit 9e9cdbf

Please sign in to comment.