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.
2 parents 276dd93 + f47af78 commit 5817601Copy full SHA for 5817601
grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy
@@ -92,7 +92,6 @@ class GrailsGradlePlugin extends GroovyPlugin {
92
}
93
94
protected Task createBuildPropertiesTask(Project project) {
95
-
96
def buildInfoFile = project.file("${project.buildDir}/grails.build.info")
97
98
def buildPropertiesTask = project.tasks.create("buildProperties")
@@ -106,7 +105,7 @@ class GrailsGradlePlugin extends GroovyPlugin {
106
105
buildPropertiesTask << {
107
project.buildDir.mkdirs()
108
ant.propertyfile(file: buildInfoFile) {
109
- for(me in buildPropertiesContents) {
+ for(me in buildPropertiesTask.inputs.properties) {
110
entry key: me.key, value: me.value
111
112
0 commit comments