Merge pull request #594 from Scrumplex/fix-support-split-natives

Support Mojang's new split natives
This commit is contained in:
Sefa Eyeoglu 2022-05-19 17:42:17 +02:00 committed by GitHub
commit 3806f23b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,7 +124,7 @@ struct GradleSpecifier
}
bool matchName(const GradleSpecifier & other) const
{
return other.artifactId() == artifactId() && other.groupId() == groupId();
return other.artifactId() == artifactId() && other.groupId() == groupId() && other.classifier() == classifier();
}
bool operator==(const GradleSpecifier & other) const
{