GrailsInAction / graina2

Source code for the 2nd edition of Grails in Action
90 stars 93 forks source link

v14 1.3.1 A word on package naming: Package name needs to be quoted #96

Closed lukasjelonek closed 10 years ago

lukasjelonek commented 10 years ago
you change the default package name for your app in /grails-app/conf/Config.groovy.       
For this chapter’s example, change the setting in that file to read:

grails.project.groupId = com.grailsinaction.qotd

I tried this and needed to quote the package name in order to make it work.

grails.project.groupId = 'com.grailsinaction.qotd'
pledbrook commented 10 years ago

Thanks for the report. This has already been fixed in the manuscript.