I just tried updating to latest rc03 and regenerated the JSON file.
I appears I get back funding, website or scm nodes which were ignored in the configuration.
Here is my configuration:
aboutLibraries {
collect {
configPath = file("$rootDir/license_config")
offlineMode = true
fetchRemoteLicense = true
fetchRemoteFunding = false
includePlatform = false
}
android {
registerAndroidTasks = false
}
export {
outputPath = file("${projectDir}/src/main/resources/licenses_desktop.json")
excludeFields.addAll("metadata", "funding", "scm", "associated", "website", "Developer.organisationUrl", "Organization.url")
prettyPrint = true
}
license {
strictMode = StrictMode.FAIL
allowedLicenses.addAll("Apache-2.0", "asdkl", "MIT", "EPL-1.0", "BSD-3-Clause")
}
library {
duplicationMode = DuplicateMode.MERGE
duplicationRule = DuplicateRule.SIMPLE
}
}
Works perfectly fine since many versions and was working in 12.1.0-rc01 and 12.1.0-rc02.
I just tried updating to latest rc03 and regenerated the JSON file.
I appears I get back
funding,websiteorscmnodes which were ignored in the configuration.Here is my configuration:
aboutLibraries { collect { configPath = file("$rootDir/license_config") offlineMode = true fetchRemoteLicense = true fetchRemoteFunding = false includePlatform = false } android { registerAndroidTasks = false } export { outputPath = file("${projectDir}/src/main/resources/licenses_desktop.json") excludeFields.addAll("metadata", "funding", "scm", "associated", "website", "Developer.organisationUrl", "Organization.url") prettyPrint = true } license { strictMode = StrictMode.FAIL allowedLicenses.addAll("Apache-2.0", "asdkl", "MIT", "EPL-1.0", "BSD-3-Clause") } library { duplicationMode = DuplicateMode.MERGE duplicationRule = DuplicateRule.SIMPLE } }Works perfectly fine since many versions and was working in
12.1.0-rc01and12.1.0-rc02.