How to upgrade grails wicket plugin
1) follow instructions below and get xircles username approved from the dev list
2) check out the latest version (NOTE: Make sure to check out over "https" and not "http")
3) Update BuildConfig.groovy under "grails-app/conf" with the new wicket jar versions in maven. When the plugin is packaged this will create "dependencies.groovy" appropriately with those jar versions
4) Update WicketGrailsPlugin.groovy with the name & version of the ZIP file for the plugin
this will also update plugin.xml when "grails release-plugin" is executed.
5)
grails set-version <version>
grails release-plugin
release-plugin commits svn changes to the trunk.
If you see an error like below
Failed to stat working directory: svn: Commit failed (details follow):
svn: MKACTIVITY of '/grails-plugins/!svn/act/299661b4-3301-0010-90a0-1f973c486f9e': 403 Forbidden (http://svn.codehaus.org)
6) Make sure to update the plugin documentation page
P.S:
For testing purposes before releasing plugin, you can first make all the changes then run
grails package-plugin
which will create a zip file which you can then test on a local project by running :
grails install-plugin <local path to zip file>