I need to implement a revision system for articles in my grails web app. After searching grails forum, stackoverflow, grails plugins and googling internet, I have ended up with 3 options:
Option 1 - Using the grails Envers plugin (see http://code.google.com/p/grails-envers-plugin/). Has anyone used it successfully? Or using Envers without the plugin (see here) but how can I make it work with GORM?
Option 2 - Using the Gvers plugin I have found out here: http://code.google.com/p/grails-envers-plugin/. I never heard anyone using it, so is there anybody who have ever used it successfully?
Option 3 - Built -in mechanism. Weceem has created a versioning system for any content of the Weceem CMS. I can draw my inspiration from the logic of the code and design of this great application but it seems like overkill and I don't really like using non-standard solutions.
So my question, what do you advise me to do ? Have you ever used any of these options ?
Thank you very much for your insights.