Skip to content

Instantly share code, notes, and snippets.

@256BitChris
Created October 30, 2018 16:52
Show Gist options
  • Save 256BitChris/6dcd6261f9ecd79b3ccdbe70877ddceb to your computer and use it in GitHub Desktop.
Save 256BitChris/6dcd6261f9ecd79b3ccdbe70877ddceb to your computer and use it in GitHub Desktop.
Same Settings After Generated
<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