Skip to content

Commit

Permalink
#569 validate configuration properties (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkMahler authored Aug 8, 2024
1 parent 7fcaf7d commit 410ba55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,10 @@ private CliConfiguration getCliConfiguration(CommandLine commandLine, File worki
.collect(toMap(entry -> String.valueOf(entry.getKey()), entry -> String.valueOf(entry.getValue())));
PropertiesConfigSource commandLineProperties = new PropertiesConfigSource(properties, "Command line properties", 400);
ConfigSource mavenSettingsConfigSource = createMavenSettingsConfigSource(userHome, getMavenSettings(commandLine), profiles);
ConfigSource configSource = configurationBuilder.build();
for (Task task : tasks) {
task.configure(commandLine, configurationBuilder);
}
ConfigSource configSource = configurationBuilder.build();
return ConfigurationMappingLoader.builder(CliConfiguration.class, configLocations)
.withUserHome(userHome)
.withWorkingDirectory(workingDirectory)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<neo4j.neo4j-java-driver.version>4.4.17</neo4j.neo4j-java-driver.version>
<neo4j-browser.version>5.21.0</neo4j-browser.version>
<slf4j.version>1.7.36</slf4j.version>
<smallrye-config.version>3.8.3</smallrye-config.version>
<smallrye-config.version>3.9.1</smallrye-config.version>
<maven-resolver.version>1.9.21</maven-resolver.version>
<snakeyaml.version>2.2</snakeyaml.version>
<snakeyaml-engine.version>2.7</snakeyaml-engine.version>
Expand Down

0 comments on commit 410ba55

Please sign in to comment.