Welcome! Please see the About page for a little more info on how this works.

+5 votes
in tools.deps by

{:deps {org.clojure/clojure {:type :mvn :version "1.8.0"}
        bouncycastle/bctsp-jdk14 {:type :mvn :version "138"}}}


Fails with:

Error building classpath. Could not find artifact bouncycastle:bctsp-jdk14:jar:138 in central (https://repo1.maven.org/maven2/)

The pom for that dep shows a "Relocation":

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>bouncycastle</groupId>
  <artifactId>bctsp-jdk14</artifactId>
  <version>138</version>

  <distributionManagement>
    <relocation>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bctsp-jdk14</artifactId>
      <version>1.38</version>
    </relocation>
  </distributionManagement>
</project>


This fails during download-dep, but may be processing improperly expanded deps.

Reported by @spelufo in Slack.

1 Answer

+2 votes
by
Reference: https://clojure.atlassian.net/browse/TDEPS-8 (reported by gshayban)
...