<@U349EMVDW>, the configuration above can also be ...
# gradle
b
@barteks2x, the configuration above can also be expressed in a more declarative style:
Copy code
tasks {

    "shadowJar"(ShadowJar::class) {
        dependencies {
            include(dependency(":gson:"))
        }
    }

    "build" {
        dependsOn("shadowJar")
    }
}