fix: shadedImplementation configuration not actually being shaded

Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
This commit is contained in:
solonovamax
2021-11-23 14:53:09 -05:00
parent 596262bd64
commit 5a35d8b40e

View File

@@ -24,6 +24,7 @@ fun Project.configureDependencies() {
api.extendsFrom(this)
}
val shadedImplementation by configurations.creating {
shaded.extendsFrom(this)
implementation.extendsFrom(this)
}