mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-09-09 01:30:57 +00:00
24 lines
956 B
XML
24 lines
956 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<profiles>
|
|
<profile>
|
|
<id>maven-staging</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>maven-staging-1</id>
|
|
<url>https://repository.apache.org/content/repositories/maven-1859/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
</profile>
|
|
</profiles>
|
|
<activeProfiles>
|
|
<activeProfile>maven-staging</activeProfile>
|
|
</activeProfiles>
|
|
</settings> |