I started running into an error when unit testing controllers after adding, but not using, the CXF plugin to my build.grade file. Running Grails 3.1.10.
I was getting an error similar to this:
http://stackoverflow.com/questions/9255047/verifyerror-class-net-sf-cglib-core-debuggingclasswriter-overrides-final-method
I added
compile("org.grails.plugins:cxf:3.0.14"){ exclude group: 'org.ow2.asm' }
and it solved the conflict. Will this cause issues in using the plugin?
I started running into an error when unit testing controllers after adding, but not using, the CXF plugin to my build.grade file. Running Grails 3.1.10.
I was getting an error similar to this:
http://stackoverflow.com/questions/9255047/verifyerror-class-net-sf-cglib-core-debuggingclasswriter-overrides-final-method
I added
compile("org.grails.plugins:cxf:3.0.14"){ exclude group: 'org.ow2.asm' }and it solved the conflict. Will this cause issues in using the plugin?