Skip to content

Commit 7521f66

Browse files
fix: use projectPath, not identityPath, for included build coordinates.
This has been a longstanding issue and will probably have multiple knock-on effects. The immediate reason I saw this was that SuperGraph was trying to find nodes built with one version of a graph using nodes from another version of a graph, and failing. This change should sync the two, which ought to also mean fewer outputs in the dependencies directory (no duplication for included build dependencies). I think lots of other code was working around this problem too without realizing it.
1 parent de66fcc commit 7521f66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/kotlin/com/autonomousapps/internal/utils/gradleStrings.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private fun ResolvedDependencyResult.compositeRequest(): IncludedBuildCoordinate
4343
gradleVariantIdentification = gradleVariantIdentification
4444
)
4545
val resolved = ProjectCoordinates(
46-
identifier = (selected.id as ProjectComponentIdentifier).identityPath(),
46+
identifier = (selected.id as ProjectComponentIdentifier).projectPath(),
4747
gradleVariantIdentification = gradleVariantIdentification,
4848
buildPath = (selected.id as ProjectComponentIdentifier).build.let {
4949
if (GradleVersions.isAtLeastGradle82) it.buildPath else @Suppress("DEPRECATION") it.name
@@ -53,8 +53,8 @@ private fun ResolvedDependencyResult.compositeRequest(): IncludedBuildCoordinate
5353
return IncludedBuildCoordinates.of(requested, resolved)
5454
}
5555

56-
private fun ProjectComponentIdentifier.identityPath(): String {
57-
return (this as? DefaultProjectComponentIdentifier)?.identityPath?.toString()
56+
private fun ProjectComponentIdentifier.projectPath(): String {
57+
return (this as? DefaultProjectComponentIdentifier)?.projectPath?.toString()
5858
?: error("${toCoordinates(GradleVariantIdentification.EMPTY)} is not a DefaultProjectComponentIdentifier")
5959
}
6060

0 commit comments

Comments
 (0)