2017-02-06 16:16:04 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'application'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '1.2.4'
|
|
|
|
}
|
|
|
|
|
|
|
|
description = 'Master Password CLI'
|
|
|
|
mainClassName = 'com.lyndir.masterpassword.CLI'
|
|
|
|
|
|
|
|
dependencies {
|
2017-04-05 00:39:18 +00:00
|
|
|
compile project(':masterpassword-algorithm')
|
2017-02-06 16:16:04 +00:00
|
|
|
|
|
|
|
compile group: 'ch.qos.logback', name: 'logback-classic', version:'1.1.2'
|
|
|
|
}
|