<@U349EMVDW> on the latest release, the shadowJar ...
# gradle
b
@barteks2x on the latest release, the shadowJar part goes like this:
Copy code
val shadowJar: ShadowJar by tasks

shadowJar.apply {
    dependencies {
        include(dependency(":gson:"))
    }
}

tasks["build"].dependsOn(shadowJar)