mirror of
https://github.com/rife2/bld
synced 2025-12-20 16:48:38 +01:00
Fixed one of the Dependency constructors not passing on exclusions
This commit is contained in:
parent
a222bec47c
commit
8928955fb1
|
|
@ -41,7 +41,7 @@ public record Dependency(String groupId, String artifactId, VersionNumber versio
|
|||
}
|
||||
|
||||
public Dependency(String groupId, String artifactId, VersionNumber version, String classifier, String type, ExclusionSet exclusions) {
|
||||
this(groupId, artifactId, version, classifier, type, null, null);
|
||||
this(groupId, artifactId, version, classifier, type, exclusions, null);
|
||||
}
|
||||
|
||||
public Dependency(String groupId, String artifactId, VersionNumber version, String classifier, String type, ExclusionSet exclusions, Dependency parent) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue