Files
Bubberstation/tools/dmitool/build.gradle
Tkdrg 553ce69257 Adds the dmitool icon merger from baystation12
Credits to GinjaNinja32@bay12 for developing dmitool and
PsiOmegaDelta@bay12 for some of these scripts. Thanks also to
neersighted for reminding me that we need this.

Basically this is like the map merger, except for icons. You can install
a hook using the instructions in the dmitool folder, and it should
automatically merge your DMIs for you. This means you can solve icon
conflicts effortlessly most of the time.
2015-11-28 03:47:26 -03:00

16 lines
301 B
Groovy

apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile group: 'ar.com.hjg', name: 'pngj', version: '2.1.0'
}
jar {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
manifest {
attributes 'Main-Class': 'dmitool.Main'
}
}