Fixed Double-T support thick steel pole connection. Concrete and Clinker walls connect to windows and glass panes.

This commit is contained in:
stfwi 2020-09-13 14:53:56 +02:00
parent 3efa21e1b6
commit 16ad286f59
9 changed files with 67 additions and 31 deletions

View file

@ -93,14 +93,18 @@ def reobfArtifact = artifacts.add('default', reobfFile) { type 'jar'; builtBy 'r
def signing = { ->
def sp = new Properties()
sp.keystore_file = project.keystore_file
sp.keystore_alias = project.keystore_alias
sp.keystore_pass = project.keystore_pass
sp.keystore_keypass = project.keystore_keypass
sp.fingerprint_sha1 = project.fingerprint_sha1
if(project.hasProperty("keystore_file")) {
sp.keystore_file = project.keystore_file
sp.keystore_alias = project.keystore_alias
sp.keystore_pass = project.keystore_pass
sp.keystore_keypass = project.keystore_keypass
sp.fingerprint_sha1 = project.fingerprint_sha1
} else {
logger.warn("[WARNING] No signing data available.")
}
if(file("signing.properties").exists()) file("signing.properties").withInputStream { sp.load(it) }
return sp
}();
}()
task signJar(type: SignJar, dependsOn: jar) {
onlyIf { signing.hasProperty("keystore_file") }
if(signing.hasProperty("keystore_file")) {