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 GUI'
|
|
|
|
mainClassName = 'com.lyndir.masterpassword.gui.GUI'
|
|
|
|
|
|
|
|
dependencies {
|
2018-04-26 17:05:45 +00:00
|
|
|
compile project( ':masterpassword-model' )
|
2017-02-06 16:16:04 +00:00
|
|
|
|
2018-04-26 17:05:45 +00:00
|
|
|
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
|
|
|
|
compile group: 'com.yuvimasory', name: 'orange-extensions', version: '1.3.0'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
2018-04-26 16:45:29 +00:00
|
|
|
|
|
|
|
run {
|
|
|
|
// I don't fully understand why this is necessary, but without it -Dmp.log.level is lost.
|
|
|
|
systemProperties = System.properties
|
|
|
|
}
|