We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5e8eee commit 8681838Copy full SHA for 8681838
src/java/grails/util/BuildSettings.groovy
@@ -465,6 +465,9 @@ class BuildSettings {
465
466
private def loadBuildPropertiesFromClasspath(Properties buildProps) {
467
InputStream stream = getClass().classLoader.getResourceAsStream("grails.build.properties")
468
+ if(stream == null) {
469
+ stream = getClass().classLoader.getResourceAsStream("build.properties")
470
+ }
471
if (stream) {
472
buildProps.load(stream)
473
}
0 commit comments