<@U0QBCLV62> This is the simplest one I could make...
# gradle
b
@bamboo This is the simplest one I could make:
Copy code
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
    }
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'

group 'test'
version '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}
dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.11'
    compile group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
    compile group: 'com.google.guava', name: 'guava', version: 'r05'
}
shadowJar {
    dependencies {
        include(dependency(":gson:"))
    }
}
build.dependsOn shadowJar