def compile_target_compatibility
ext {
+ // local build environment properties
+ def localProps = "${jalviewDir}/local.properties"
+ if (file(localProps).exists()) {
+ def p = new Properties()
+ def localPropsFIS = new FileInputStream(localProps)
+ p.load(localPropsFIS)
+ localPropsFIS.close()
+ p.each {
+ key, val ->
+ def over = project.properties.get(key) != null
+ project.properties.put(key, val)
+ if (over) {
+ println("Overriding property '${key}' with local.properties value")
+ }
+ }
+ }
getdownWebsiteDir = "${jalviewDir}/${getdown_website_dir}/${JAVA_VERSION}"
getdownDir = ""
reportRsyncCmd = false