keecrack/keecrack-cli/build.gradle

14 lines
308 B
Groovy
Raw Normal View History

2018-04-06 22:04:48 +00:00
dependencies {
compile project(':keecrack-lib')
compile project(':keecrack-gui')
implementation group: 'net.sourceforge.argparse4j', name: 'argparse4j', version: '0.8.1'
}
jar {
manifest {
attributes (
'Main-Class': 'com.wbrawner.keecrack.cli.Main'
)
}
}