When I run the command mvn eclipse:eclipse, the dependency jar ojdbc14.jar is getting downloaded without any issues. Then, when I run the command mvn clean install, maven tries to download the same jar again - but this time it fails saying that the jar is not found in the repository.
What I have noted is that, when running the command for the first time (mvn eclipse:eclipse), Maven looks into the Nexus repository of our company - and it finds the jar. When running the command mvn clean install, maven directly goes to the central repository without looking into Nexus - and hence it is not finding the jar.
1) Why is maven trying to download the jar when it is already present in the local machine?
2) Why is maven skipping the Nexus repository before going to the central repository?