This repository was archived by the owner on Sep 14, 2022. It is now read-only.
forked from GoldBigDragon/MinecraftResourcepackCompactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (34 loc) · 1.34 KB
/
build.gradle
File metadata and controls
41 lines (34 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* This file is part of MinecraftResourceCompactor.
*
* MinecraftResourcepackCompactor is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* MinecraftResourcepackCompactor is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
group 'io.github.goldbigdragon.resourcepack.compactor'
version '1.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'io.github.goldbigdragon.resourcepack.compactor.Main'
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.github.depsypher', name: 'pngtastic', version: '1.5'
compile group: 'com.google.guava', name: 'guava', version: '24.0-jre'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
}
run {
standardInput = System.in
}