license-list-plugin icon indicating copy to clipboard operation
license-list-plugin copied to clipboard

Question/Feature Request: Skip test scopes

Open wglp opened this issue 2 years ago • 1 comments

Hi,

is there an option to skip the androidTest and test scopes?

It seems it's possible to add further scopes by additionalScopes, but not to skip the two existing / hardcoded ones.

IMO there are use cases where those are not needed, but I was not able to manage to skip them.

wglp avatar May 25 '22 12:05 wglp

@wglp It's possible because the property is not read-only.

Groovy

additionalScopes = []

Kotlin

additionalScopes = setOf()

jmatsu avatar Jun 29 '22 17:06 jmatsu