tools.deps.alpha 0.5.460 and clj 1.9.0.397 are now available.

The only change in this version are some dependency updates and 
clarification on how to best connect to private s3 Maven repos.

The prior directions indicated that this should be done using the standard 
AWS credential chain (ambient environment variables, ~/.aws/credentials, 
etc). The problem with this approach is that the credentials are in effect 
for ALL private s3 Maven repos in the process. 

The new version resolves some issues allowing you to instead specify AWS 
creds on a per-server basis in the ~/.m2/settings.xml file:

<servers>
  ...
  <server>
    <id>my-private-repo</id>
    <username>AWS_ACCESS_KEY_HERE</username>
    <password>AWS_SECRET_ACCESS_KEY_HERE</password>
  </server>
  ...
</servers>


This is now the preferred mechanism (but the other mechanisms also work).

See https://clojure.org/guides/getting_started for installation or upgrade.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to