Reputation: 662
Okay perhaps something changed that I dont know about OR I am missing a step.
Several weeks ago in a grails app I did grails install-templates
as mentioned here http://grails.org/doc/2.3.x/ref/Command%20Line/install-templates.html and I got a artifacts
scaffolding
testing
and war
folders with items in them.
However today I am getting artifacts
testing
and war
. Is there something I am missing?
For this project I really only need a CRUD app and am fine with the generated views but there are a few tweaks for style that I need to do.
We are using Grails 2.3.7
Upvotes: 1
Views: 347
Reputation: 24776
So, apparently there is the need to run refresh-dependencies
before running install-templates
. I was able to verify this in 2.3.7.
This was noted on the developers mailing list.
Upvotes: 1