-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Description
Phil Clay opened MNG-7062 and commented
The maven settings.xml file currently has first-class support for controlling artifact downloads via the mirrors section. It would be intuitive and logical if the the settings.xml file also had first-class support for controlling artifact uploads.
Being able to control both artifact uploads and downloads from the settings.xml file allows for easier centralized management in organizations using a repository manager, in which all downloads and uploads should go through the repository manager.
The current approach of being able to point artifact downloads to a repository manager in settings.xml, but not being able to point uploads to the same repository manager in settings.xml is clunky and not intuitive.
Here are several alternatives that can be used today, but none are as easy/intuitive as first class support in the settings.xml would be.
- Define downloads in settings.xml file, but define uploads via
distributionManagementin poms. - Define
alt*DeploymentRepositoryproperties in settings.xml (as mentioned in PR #23). Do not usedistributionManagementin poms at all. - Define custom release/snapshot repo properties in settings.xml, and define a
distributionManagementsection in poms that references those properties
Affects: 3.6.3