Created
January 11, 2022 21:09
-
-
Save plexus/454456688803f7fb3c041dd3793731c9 to your computer and use it in GitHub Desktop.
This file contains 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"> | |
<servers> | |
<server> | |
<id>my.datomic.com</id> | |
<username>...</username> | |
<password>...</password> | |
</server> | |
<server> | |
<id>cs-mvn</id> | |
<username>...</username> | |
<password>...</password> | |
</server> | |
<server> | |
<id>datomic-cloud</id> | |
<username>...</username> | |
<password>...</password> | |
</server> | |
<server> | |
<id>clojars</id> | |
<username>plexus</username> | |
<password>...</password> | |
</server> | |
<server> | |
<id>gitlab-maven</id> | |
<configuration> | |
<httpHeaders> | |
<property> | |
<name>Private-Token</name> | |
<value>...</value> | |
</property> | |
</httpHeaders> | |
</configuration> | |
</server> | |
</servers> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment