1. Don't wait too long before grails upgrade. Do an upgrade at your first opportunity. That saves you from being on your own island.
2. If you use groovyws jar, make sure you exclude xmlbeans and jaxen. These are available in jdk1.6. This wasn't a problem in older grails; the classloading has probably changed.
runtime('org.codehaus.groovy.modules:groovyws:0.5.2') {
excludes 'xmlbeans', 'jaxen'
}
3. I am currently trying to find out why the integration tests are not rolling back the data inserts. I'll put the solution here once I know it.
No comments:
Post a Comment