Last active
June 21, 2021 20:04
-
-
Save JordanSchuetz/c7e2df9daf9ae430814625dc046fc679 to your computer and use it in GitHub Desktop.
This is your settings.xml file for maven deployment using MuleSoft Anypoint Studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<servers> | |
<server> | |
<id>MuleRepository</id> | |
<username>ANYPOINT-USERNAME-HERE</username> | |
<password>ANYPOINT-PASSWORD-HERE</password> | |
</server> | |
</servers> | |
<profiles> | |
<profile> | |
<id>mulesoft</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
<repositories> | |
<repository> | |
<id>MuleRepository</id> | |
<name>MuleRepository</name> | |
<url>https://repository.mulesoft.org/nexus-ee/content/repositories/releases-ee/</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
</profile> | |
</profiles> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment