diff --git a/build.gradle b/build.gradle index 6d31c45..7dd7686 100644 --- a/build.gradle +++ b/build.gradle @@ -19,12 +19,14 @@ import java.time.Instant buildscript { // load properties from custom location - def propsFile = Paths.get("${projectDir}/../../gradle.properties").toAbsolutePath().normalize().toFile() - println("Loading custom property data from: ${propsFile}") + def propsFile = Paths.get("${projectDir}/../../gradle.properties").normalize() + if (propsFile.toFile().canRead()) { + println("Loading custom property data from: ${propsFile}") - def props = new Properties() - propsFile.withInputStream {props.load(it)} - props.each {key, val -> project.ext.set(key, val)} + def props = new Properties() + propsFile.withInputStream {props.load(it)} + props.each {key, val -> project.ext.set(key, val)} + } // for plugin publishing and license sources repositories {