You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Via settings.xml we can setup mirrors for Maven Repos, e.g. central.
<mirrors>
<mirror>
<id>${url}</id>
<name>${url} Central Mirror</name>
<url>${urll}/nexus/content/groups/public</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
ces-build-lib could help us doing that.
We already use writing settings.xml for deployment. So we have to create a generic mechanism for settings.xml e.g. using a builder. We also have to assert that the settings.xml is written at least once before mvn / call() is called and that maven uses the settings.xml (-s parameter).
The text was updated successfully, but these errors were encountered:
Via
settings.xml
we can setup mirrors for Maven Repos, e.g. central.ces-build-lib could help us doing that.
We already use writing
settings.xml
for deployment. So we have to create a generic mechanism forsettings.xml
e.g. using a builder. We also have to assert that thesettings.xml
is written at least once beforemvn
/call()
is called and that maven uses thesettings.xml
(-s
parameter).The text was updated successfully, but these errors were encountered: