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 fc812dc + 6fa4102 commit c268e98Copy full SHA for c268e98
buildSrc/src/main/kotlin/io/micronaut/build/ProjectGraphBuilder.kt
@@ -292,6 +292,11 @@ abstract class ProjectGraphBuilder : DefaultTask() {
292
allDependencies.split(",").forEach { dependency ->
293
dependencies.add(dependency.toProjectName())
294
}
295
+ if (name == "gradle") {
296
+ // Add an implicit dependency to platform, which is not captured by the tool
297
+ // because it's added at runtime only by the plugin
298
+ dependencies.add("platform")
299
+ }
300
301
if (projectToMetadata.containsKey(name)) {
302
throw IllegalStateException("Duplicate project name: $name, also found in $dependencyFile")
0 commit comments