mirror of
https://github.com/AppleCommander/ShrinkItArchive.git
synced 2025-01-02 10:30:17 +00:00
21 lines
280 B
Groovy
21 lines
280 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
mainClassName = 'com.webcodepro.shrinkit.NufxScan'
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': mainClassName
|
|
)
|
|
}
|
|
}
|