We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This line is incorrect
grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy
Line 407 in 45285f7
You do the correct thing when creating the properties in buildProperties task.
Line 407 should also have the same conditional.
NOTE: This bug breaks buildscripts that apply Grails plugins and a pluging that use Grolifant 2.x.
The only workaround in such situations is to add
gradle.taskGraph.whenReady { project.tasks.withType(Test).configureEach { it.systemProperties['info.app.version'] = project.version.toString() } }
or
gradle.taskGraph.whenReady { project.tasks.withType(Test).configureEach { it.systemProperties['info.app.version'] = grolifant.versionProvider.get() } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This line is incorrect
grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy
Line 407 in 45285f7
You do the correct thing when creating the properties in buildProperties task.
Line 407 should also have the same conditional.
NOTE: This bug breaks buildscripts that apply Grails plugins and a pluging that use Grolifant 2.x.
The only workaround in such situations is to add
or
The text was updated successfully, but these errors were encountered: