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 d7810f3 commit 7eaba1fCopy full SHA for 7eaba1f
grails-shell/src/main/groovy/org/grails/cli/profile/commands/CreateAppCommand.groovy
@@ -226,6 +226,10 @@ class CreateAppCommand extends ArgumentCompletingCommand implements ProfileRepos
226
if(gormDep != null) {
227
variables['gorm.version'] = gormDep
228
}
229
+ String groovyDep = mpr.profileDependencyVersions.versionProperties.get('groovy.version')
230
+ if(groovyDep != null) {
231
+ variables['groovy.version'] = groovyDep
232
+ }
233
234
235
Path appFullDirectory = Paths.get(cmd.baseDir.path, appname)
0 commit comments