LicenseToolsPlugin
LicenseToolsPlugin copied to clipboard
[Question / Feature-request] - improve ignoredGroups with wildcard
licenseTools {
ignoredGroups = setOf("com.foo.",
"com.foo.android.bar",
"com.foo.android",
"com.foo.bar")
}
Is there a way to filter every groups which begin with "com.foo" ?
like :
licenseTools {
ignoredGroups = setOf("com.foo.*")
}
Hi, @mirecalu I would like to know in what case you would like to use the wild card. (e.g. Ignoring androidx libraries, or inhouse libraries ...)
Hi @kazyApp, Yep ignoring the inhouse libraries. We have many inhouse libraries, so it could be nice to create a filter in the gradle conf to avoid adding "skip" on every inhouse lib into the yml file.
What do you think ?