Created
October 30, 2018 16:52
-
-
Save 256BitChris/6dcd6261f9ecd79b3ccdbe70877ddceb to your computer and use it in GitHub Desktop.
Same Settings After Generated
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
<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"> | |
<!-- Complete Documentation for the settings.xml file can be found at https://maven.apache.org/settings.html --> | |
<!-- | |
- <servers> specify the repositories we deploy or release artifacts to. | |
- | |
- The <id> tag specified here should match up with an <id> tag for a <repository> or <snapshotRepository> | |
- located in the <distributionManagement> section of your project's pom.xml | |
--> | |
<servers> | |
<server> | |
<id>io.cloudrepo.maven.releases</id> | |
<username>my-user</username> | |
<password>my-passphrase</password> | |
</server> | |
<server> | |
<id>io.cloudrepo.maven.snapshots</id> | |
<username>my-user</username> | |
<password>my-passphrase</password> | |
</server> | |
</servers> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment