We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06e0dd commit 5bf8da9Copy full SHA for 5bf8da9
src/IKVM.Maven.Sdk.Tasks.Tests/MavenReferenceItemResolveTests.cs
@@ -545,7 +545,9 @@ public void CanResolveCircularDependency()
545
var pkg1 = t.ResolvedReferences.First(i => i.ItemSpec == "maven$org.apache.commons:commons-text:1.11.0");
546
pkg1.GetMetadata("References").Split(';').Should().Contain("maven$org.apache.commons:commons-lang3:3.13.0");
547
var pkg2 = t.ResolvedReferences.First(i => i.ItemSpec == "maven$org.apache.commons:commons-lang3:3.13.0");
548
- pkg2.GetMetadata("References").Split(';').Should().Contain("maven$org.apache.commons:commons-text:1.11.0");
+
549
+ // we break the circle so we can actually build them
550
+ pkg2.GetMetadata("References").Split(';').Should().NotContain("maven$org.apache.commons:commons-text:1.11.0");
551
}
552
553
[TestMethod]
0 commit comments