mirror of https://github.com/apache/maven.git
19 lines
462 B
XML
19 lines
462 B
XML
|
<settings>
|
||
|
<localRepository>file:../target/local-repo</localRepository>
|
||
|
<usePluginRegistry>false</usePluginRegistry>
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>test-settings</id>
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>test</id>
|
||
|
<url>file:../target/test-repo</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
<activeProfiles>
|
||
|
<activeProfile>test-settings</activeProfile>
|
||
|
</activeProfiles>
|
||
|
</settings>
|