Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump commons-cli:commons-cli from 1.6.0 to 1.7.0 #74

Merged
merged 2 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public static void main(String[] args) throws ParseException {
File roleDir = new File(commandLine.getOptionValue("roleDir", "roles"));
File environmentDir = new File(commandLine.getOptionValue("environmentDir", "environments"));
File targetDir = new File(commandLine.getOptionValue("target", "target"));
String[] environments = StringUtils.split(commandLine.getOptionValue("environments", null), ",");
String[] nodes = StringUtils.split(commandLine.getOptionValue("nodes", null), ",");
String[] environments = StringUtils.split(commandLine.getOptionValue("environments", (String)null), ",");
String[] nodes = StringUtils.split(commandLine.getOptionValue("nodes", (String)null), ",");

GeneratorOptions options = new GeneratorOptions()
.baseDir(baseDir)
Expand Down