We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1115de commit 0853b5dCopy full SHA for 0853b5d
plugins/autodoc/autodoc-plugin/src/main/java/org/eclipse/edc/plugins/autodoc/AutodocPlugin.java
@@ -65,9 +65,9 @@ public void apply(Project project) {
65
});
66
67
project.afterEvaluate(p -> {
68
- var manifestFile = p.getLayout().getBuildDirectory().file("edc.json");
+ var manifestFile = p.getLayout().getBuildDirectory().file("edc.json").get().getAsFile();
69
70
- if (!manifestFile.isPresent()) {
+ if (!manifestFile.exists()) {
71
return;
72
}
73
0 commit comments