SquirrelJME/SquirrelJME

View on GitHub
tools/unzip/build.gradle

Summary

Maintainability
Test Coverage
plugins {
    id "java"
    id "application"
}

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

description = "Extracts ZIP files."
mainClassName = "cc.squirreljme.unzip.Main"

dependencies {
    implementation project(":modules:zip")
    implementation project(":modules:io")
}