solved my problem by figuring out that in ubuntu, leiningen / maven
needs to have the proxy settings specified in ~/.m2/settings.xml


[INFO] snapshot incanter:incanter:1.0-master-SNAPSHOT: checking for
updates from central
[WARNING] repository metadata for: 'snapshot incanter:incanter:1.0-
master-SNAPSHOT' could not be retrieved from repository: central due
to an error: Error transferring file
[INFO] Repository 'central' will be blacklisted
[INFO] snapshot incanter:incanter:1.0-master-SNAPSHOT: checking for
updates from clojure-snapshots
[WARNING] repository metadata for: 'snapshot incanter:incanter:1.0-
master-SNAPSHOT' could not be retrieved from repository: clojure-
snapshots due to an error: Error transferring file
[INFO] Repository 'clojure-snapshots' will be blacklisted
[INFO] snapshot incanter:incanter:1.0-master-SNAPSHOT: checking for
updates from clojars
[WARNING] repository metadata for: 'snapshot incanter:incanter:1.0-
master-SNAPSHOT' could not be retrieved from repository: clojars due
to an error: Error transferring file
[INFO] Repository 'clojars' will be blacklisted

<settings>
  .
  .
  <proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
    </proxy>
  </proxies>
  .
  .
</settings>


On Dec 11, 9:31 am, bOR_ <boris.sch...@gmail.com> wrote:
> Not sure what was causing it, butleiningen/ clojars couldn't get its
> deps yesterday. I thought it was caused by clojure and clojure-contrib
> no longer being on clojars.org, but maybe the renaming on
> build.clojure.org has something to do with it.
>
> On Dec 11, 6:18 am, Phil Hagelberg <p...@hagelb.org> wrote:
>
>
>
> > liebke <lie...@gmail.com> writes:
> > > I like the new naming scheme, but would it be possible to add 1.1.0-
> > > alpha-SNAPSHOT back to the repository (in addition to the new names),
> > > so that builds dependent on projects in Clojars will be able to
> > > download their dependencies correctly again, at least until everybody
> > > gets a chance to upload new poms to Clojars?
>
> > The jars with the old version number haven't disappeared, have they?
> > Projects relying on -alpha should still work, they will just not get the
> > latest and greatest version of Clojure.
>
> > Please speak up if you've noticed otherwise, but that's my understanding.
>
> > -Phil

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

Reply via email to