Skip to content

Commit

Permalink
Bring back the dependencies menu item in Dev UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Loubyansky committed Dec 10, 2024
1 parent d5d8a4b commit f39fd21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void createBuildTimeActions(BuildProducer<BuildTimeActionBuildItem> buildTimeAct
private boolean isEnabled() {
var value = ConfigProvider.getConfig().getConfigValue("quarkus.bootstrap.incubating-model-resolver");
// if it's not false and if it's false it doesn't come from the default value
return value == null || !"false".equals(value.getValue()) || "default values".equals(value.getSourceName());
return value == null || !"false".equals(value.getValue()) || "DefaultValuesConfigSource".equals(value.getSourceName());
}

private void buildTree(ApplicationModel model, Root root, Optional<Set<String>> allGavs, Optional<String> toTarget) {
Expand Down

0 comments on commit f39fd21

Please sign in to comment.