mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
17 lines
864 B
XML
17 lines
864 B
XML
<ivysettings>
|
|
<settings defaultResolver="chain" />
|
|
<resolvers>
|
|
<chain name="chain">
|
|
<!-- NOTE: You should declare only repositories that you need here -->
|
|
<filesystem name="local" local="true" m2compatible="true">
|
|
<artifact pattern="${user.home}/.m2/[organisation]/[module]/[revision]/[module]-[revision].[ext]" />
|
|
<ivy pattern="${user.home}/.m2/[organisation]/[module]/[revision]/[module]-[revision].pom" />
|
|
</filesystem>
|
|
<ibiblio name="ibiblio" m2compatible="true" />
|
|
<!-- {spring.mavenRepositories} -->
|
|
</chain>
|
|
</resolvers>
|
|
<credentials host="${env.COMMERCIAL_RELEASE_REPO_URL}" username="${env.COMMERCIAL_REPO_USERNAME}" passwd="${env.COMMERCIAL_REPO_PASSWORD}"/>
|
|
<credentials host="${env.COMMERCIAL_SNAPSHOT_REPO_URL}" username="${env.COMMERCIAL_REPO_USERNAME}" passwd="${env.COMMERCIAL_REPO_PASSWORD}"/>
|
|
</ivysettings>
|