tools-deps

jumar 2024-09-10T09:43:42.913479Z

Is there a way to use a JAR in a S3 bucket as a dependency in deps.edn?

maleghast 2024-09-10T10:17:07.632029Z

I cannot remember the specifics of how we did it for Clojure, but this article shows you how to set that up for Java and when I did it a few years back we were using tools/deps: https://octopus.com/blog/hosting-maven-in-s3

maleghast 2024-09-10T10:17:27.950189Z

(Sorry I can't be of more specific help in this case, but hopefully...)

Alex Miller (Clojure team) 2024-09-10T12:03:57.052649Z

Yes, hosting a maven repo in s3 is the main way. No support for just a bare jar in s3 otherwise

jumar 2024-09-10T12:39:36.022289Z

Thanks!