I don't know if this is going to get downvoted to oblivion as I can't provide a great deal of specific information. But in a nutshell. I have a maven project which has dependencies of other projects. One of the files coming in seems to be running on old code somehow. When de-bugging through. It stops on blank lines etc. It's like it's cached an old jar file somewhere or something. I have tried...
- Deleting the contents my .m2 repository folder
- Deleting all my temp files and anything that might reference the project from my tomcat directory.
- reindexing the local repository
- mvn clean install
- mvn compile -pl service-module -am
- mvn dependency:purge-local-repository
- mvn dependency:purge-local-repository -DreResolve=false
- mvn dependency:purge-local-repository -DactTransitively=false -DreResolve=false
- setting the updatePolicy in settings.xml to 'always'
I have been at it for hours now and have made absolutely no progress.
Does anybody know any other solutions to this sort of problem?