mirror of https://github.com/apache/maven.git
o Fixed IT bootstrap to fetch only from the desired IT repos
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@1069524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
764722d5f6
commit
0b9d32c3a3
|
@ -20,5 +20,37 @@ under the License.
|
|||
-->
|
||||
|
||||
<settings>
|
||||
<!-- empty and just here to disable any custom settings from the user's environment -->
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>it-bootstrap</id>
|
||||
<!-- NOTE: We want everything to be fetched from the repo configured in the global settings -->
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>apache.snapshots</id>
|
||||
<url>file:target/null</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>apache.snapshots</id>
|
||||
<url>file:target/null</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
</profile>
|
||||
</profiles>
|
||||
<activeProfiles>
|
||||
<activeProfile>it-bootstrap</activeProfile>
|
||||
</activeProfiles>
|
||||
</settings>
|
||||
|
|
Loading…
Reference in New Issue