mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
16 lines
301 B
Groovy
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'
|
|
}
|
|
} |