I have a project that uses an internal repository and the central repository. Is there a way I can configure the settings.xml such that I can use both instead of just one? W
Your mirror directive is currently mirroring everything. You can exclude named repositories thus:
!myExcludedRepo,*
The above mirrors everything except the repository named myExcludedRepo.
Here's the Maven guide for mirroring. Note particularly the section marked Advanced. There are a lot of capabilities there.