repo.or.cz
/
SquirrelJME.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rename unzip tool.
[SquirrelJME.git]
/
tools
/
squirreljme-unzip
/
build.gradle
blob
8d30502ea273565660d8516253fad57d5052cad4
1
plugins {
2
id "java"
3
id "application"
4
}
5
6
apply plugin: "com.github.johnrengelman.shadow"
7
8
description = "Extracts ZIP files."
9
mainClassName = "cc.squirreljme.unzip.Main"
10
11
dependencies {
12
implementation project(":modules:zip")
13
implementation project(":modules:io")
14
}