Now available:

   - tools.deps.alpha 0.5.435
   - clj 1.9.0.381
      - Mac: brew upgrade clojure
      - Linux: see https://clojure.org/guides/getting_started
      - Windows: working on it! 
   
Changelog:

   - Support for Maven deps in authenticated repositories (TDEPS-9 - thanks 
Dominic 
   Monroe!)
   - In local jar dependencies like {:local/root "path/to.jar"}, if the jar 
   has an embedded pom, it will be used to traverse and include transitive deps
   - Use `exec` for final Java invocation in scripts (TDEPS-76 - 
   thanks Mikhail Gusarov!)
   - Convey lib map via Java system property - a first step towards add-lib 
   <http://insideclojure.org/2018/05/04/add-lib/> and other future 
   functionality
   
For Maven deps in authenticated repositories, existing Maven infrastructure 
is used to convey credentials via the ~/.m2/settings.xml:

  <servers>
    …
    <server>
      <id>my-auth-repo</id>
      <username>zango</username>
      <password>123</password>
    </server>
    …
  </servers>

Then in your deps.edn include a repo with a name matching the <id>:

{:deps
 {authenticated/dep {:mvn/version "1.2.3"}}
 :mvn/repos
 {"my-auth-repo" {:url "https://my.auth.com/repo"}}}

This will be included in the docs too, just haven't had time yet.

Issues: https://dev.clojure.org/jira/browse/TDEPS
Chat: Clojurian Slack in #tools-deps




-- 
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