I think that if you use grails 2.2.x, you will not see the directory in ~.grails/ . To find the keystore, the plugin uses Pattern , corresponding to Grails version 1.3.x and 2.0.x - 2.1.x
Ideally, you should see certificates stored in ~./grails/${grailsVersion}
Check out the plugin code for certificates .
Created a JIRA defect for it.
The matrix template will not work for Grails version 2.2.x and higher due to the code below.
import java.util.regex.Pattern Pattern V2X = Pattern.compile("2.[01].\\d+?") assert !V2X.matcher("2.2.0").find()
source share