Fixed Double-T support thick steel pole connection. Concrete and Clinker walls connect to windows and glass panes.
This commit is contained in:
parent
3efa21e1b6
commit
16ad286f59
9 changed files with 67 additions and 31 deletions
16
build.gradle
16
build.gradle
|
@ -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")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue