Update build scripts and tests so that repository settings are copied dynamically from the build. See gh-42333
39 lines
895 B
XML
39 lines
895 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<settings>
|
|
<localRepository>@localRepositoryPath@</localRepository>
|
|
<profiles>
|
|
<profile>
|
|
<id>it-repo</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<repositories>
|
|
<repository>
|
|
<id>local.central</id>
|
|
<url>@localCentralUrl@</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<!-- {spring.mavenRepositories} -->
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>local.central</id>
|
|
<url>@localCentralUrl@</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<!-- {spring.mavenRepositories} -->
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
</settings>
|