I have a Grails 2.3.0 project that uses CXF plugin. With CXF "wsdl2java
" I have generated some java files which I have compiled into a JAR file. The JAR file I have put in the "lib" folder of my project. I use some of the types from the JAR in my code - so far so good!
Running grails compile
works fine! BUT! Running grails compile
again fails. It complains about missing classes from the JAR file. Running grails clean
solves the issue, and the code compiles nicely again (and works as intended btw!).
The setup worked fine with Grails 2.2.4. Any ideas on how to solve this issue are appreciated!