I found a solution.
I was manually adding the oracle jar to my local .m2 repo thusly:
mvn install:install-file -Dfile=ojdbc6-11.1.0.jar -Dpackaging=jar\ -
DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.1.0
This worked find for a while, but then mvn started winging that it
could not find the jar, even though its sitting quite happily in the
local .m2 repo in the correct location.
However, If you add "-DgeneratePom=true", the problem goes away (at
least for today). i.e.
mvn install:install-file -Dfile=ojdbc6-11.1.0.jar -Dpackaging=jar\
-DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.1.0 -
DgeneratePom=true
Simon.