Skip to content

Commit 5817601

Browse files
committed
Merge branch '3.0.x' of github.com:grails/grails-core into 3.0.x
2 parents 276dd93 + f47af78 commit 5817601

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ class GrailsGradlePlugin extends GroovyPlugin {
9292
}
9393

9494
protected Task createBuildPropertiesTask(Project project) {
95-
9695
def buildInfoFile = project.file("${project.buildDir}/grails.build.info")
9796

9897
def buildPropertiesTask = project.tasks.create("buildProperties")
@@ -106,7 +105,7 @@ class GrailsGradlePlugin extends GroovyPlugin {
106105
buildPropertiesTask << {
107106
project.buildDir.mkdirs()
108107
ant.propertyfile(file: buildInfoFile) {
109-
for(me in buildPropertiesContents) {
108+
for(me in buildPropertiesTask.inputs.properties) {
110109
entry key: me.key, value: me.value
111110
}
112111
}

0 commit comments

Comments
 (0)