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.
2 parents 621b984 + ad83e46 commit fc812dcCopy full SHA for fc812dc
buildSrc/src/main/kotlin/io/micronaut/build/ProjectGraphBuilder.kt
@@ -309,6 +309,21 @@ abstract class ProjectGraphBuilder : DefaultTask() {
309
props.get("build-status")?.toString(),
310
dependencies.toList()
311
)
312
+ } else if (dependencyFile.name == "ERROR") {
313
+ val name = projectDir.name.substring("reportForMicronaut".length).lowercase()
314
+ projectToMetadata[name] = ModuleMetadata(
315
+ name,
316
+ "ERROR",
317
318
319
320
321
322
323
+ latestBuildPluginsVersion.get(),
324
325
+ emptyList()
326
+ )
327
}
328
329
0 commit comments