You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Between versions 2.7 and 2.9, a new constructor for LicenseBundleNormalizer was added to src/main/groovy/com/github/jk1/license/filter/LicenseBundleNormalizer.groovy. This causes an overload resolution ambiguity if null is passed as bundlePath:
In build.gradle.kts:
Script compilation error:
Line 141: filters = arrayOf<DependencyFilter>(LicenseBundleNormalizer(null, true))
^ Overload resolution ambiguity:
public constructor LicenseBundleNormalizer(p0: InputStream!, p1: Boolean) defined in com.github.jk1.license.filter.LicenseBundleNormalizer
public constructor LicenseBundleNormalizer(p0: String!, p1: Boolean) defined in com.github.jk1.license.filter.LicenseBundleNormalizer
Do you have any advice on how to proceed here?
The text was updated successfully, but these errors were encountered:
Between versions 2.7 and 2.9, a new constructor for
LicenseBundleNormalizer
was added tosrc/main/groovy/com/github/jk1/license/filter/LicenseBundleNormalizer.groovy
. This causes an overload resolution ambiguity ifnull
is passed asbundlePath
:In build.gradle.kts:
Do you have any advice on how to proceed here?
The text was updated successfully, but these errors were encountered: