Merge pull request #594 from Scrumplex/fix-support-split-natives
Support Mojang's new split natives
This commit is contained in:
commit
3806f23b02
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue