I'm wiring grails plugin. During _Install
I would like to append the part of my plugin'sConfig.groovy
. The block I'd like to cut and append starts with
// **** PLUGINSTART
and ends with
// **** PLUGINEND
Curently I'm using ant.copy
and completely replace the Config.groovy
with my plugin's Config.groovy
. How to append only this part?