SquirrelJME/SquirrelJME

View on GitHub
sdk/build.gradle

Summary

Maintainability
Test Coverage
plugins {
    id "java"
}

apply plugin: "com.github.johnrengelman.shadow"

repositories {
    mavenCentral()
    jcenter()
}

dependencies {
    shadow localGroovy()
    shadow gradleApi()
}

/*task relocateShadowJar(type: ConfigureShadowRelocation) {
    target = tasks.shadowJar
}

shadowJar {
    dependsOn relocateShadowJar
}*/