{: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.