2
0
MasterPassword/platform-independent/java/gui/build.gradle

41 lines
1.4 KiB
Groovy
Raw Normal View History

2017-02-06 16:16:04 +00:00
plugins {
id 'java'
id 'application'
2018-05-19 15:45:57 +00:00
id 'com.github.johnrengelman.shadow' version '2.0.4'
2017-02-06 16:16:04 +00:00
}
description = 'Master Password GUI'
mainClassName = 'com.lyndir.masterpassword.gui.MasterPassword'
2017-02-06 16:16:04 +00:00
dependencies {
2018-06-10 19:22:37 +00:00
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p2'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
implementation group: 'com.yuvimasory', name: 'orange-extensions', version: '1.3.0'
2017-02-06 16:16:04 +00:00
compile project( ':masterpassword-model' )
2017-02-06 16:16:04 +00:00
}
2018-05-19 15:45:57 +00:00
2018-07-10 04:39:52 +00:00
// release with: STORE_PW=$(mpw masterpassword.keystore) KEY_PW_DESKTOP=$(mpw masterpassword-desktop) gradle clean masterpassword-gui:shadowJar
shadowJar {
manifest {
attributes 'Implementation-Title': description
attributes 'Implementation-Version': version
}
doLast {
if (System.getenv( 'KEY_PW_DESKTOP' ) != null)
ant.signjar( jar: archivePath,
alias: 'masterpassword-desktop',
keystore: 'masterpassword.keystore',
storepass: System.getenv( 'STORE_PW' ),
keypass: System.getenv( 'KEY_PW_DESKTOP' ),
preservelastmodified: 'true',
destdir: '.' )
}
2018-05-19 15:45:57 +00:00
}
run {
// I don't fully understand why this is necessary, but without it -Dmp.log.level is lost.
2018-07-26 19:05:58 +00:00
//systemProperties = System.properties
}