Skip to content

Commit

Permalink
Merge pull request #2 from liquibase/feature/update-4.23.0
Browse files Browse the repository at this point in the history
Feature/update 4.23.0
  • Loading branch information
mcred authored Aug 3, 2023
2 parents 7731f16 + e3402aa commit 2432c50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,17 @@
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>4.18.0</version>
<scope>provided</scope>
<version>4.23.0</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-commercial</artifactId>
<version>4.18.0</version>
<scope>provided</scope>
<version>4.23.0</version>
</dependency>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.7.0</version>
<scope>provided</scope>
<version>4.7.3</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ private void writeHeaderToFile(BufferedWriter writer, String uCommandName) throw
private void writeArgumentsToFile(BufferedWriter writer, Map<String, CommandArgumentDefinition<?>> arguments, String indent) throws IOException {
int i=1;
for (Map.Entry<String, CommandArgumentDefinition<?>> entry : arguments.entrySet()) {
if (entry.getValue().getHidden()) {
continue;
}
String optional = entry.getValue().isRequired() ? "" : " optional ";
String required = entry.getValue().isRequired() ? "*required* " : "";
String tab = entry.getValue().isRequired() ? " " : "";
Expand Down

0 comments on commit 2432c50

Please sign in to comment.