:mvn/repos map in deps.edn should have a way to configure <repositories> tag in generated pom.xml
Description
Environment
Attachments
- 08 Nov 2018, 05:02 PM
- 08 Nov 2018, 05:01 PM
Activity
Alex Miller November 15, 2022 at 4:11 PM
Added in Clojure CLI 1.11.1.1200, slightly different syntax, see docs for details
Tim Gilbert November 8, 2018 at 5:10 PM
0002-Implemented-snapshots-and-releases-configuration.patch
implements <snapshots>
and <releases>
configuration under the :mvn/repos
key in deps.edn.
This implementation follows the first example above, where :releases
contains a map which can contain :update-policy
, :checksum-policy
or :enabled
keys.
I've also added some rudimentary tests for the pom-generation stuff, or at least the repo part of it. They cheat a little bit by testing private functions in the gen.pom
namespace, and they work by doing brute string comparisons on generated XML, but they are at least easy to read. I'm happy to rework them to be more correct / robust if needed.
If this format looks good, I can submit a PR against the clojure-site repo to update the tools.deps docs to mention these new keys.
Tim Gilbert November 8, 2018 at 5:01 PM
Maven was giving me some warnings because one section of the pom.xml contains duplicate entries; 0001-Removing-duplicate-entry-from-pom.xml.patch
removes them (this is independent from the patch or the ticket, really).
Details
Assignee
Alex MillerAlex MillerReporter
Tim GilbertTim GilbertPriority
Major
Details
Details
Assignee
Reporter
Priority

The
:mvn/repos
map in deps.edn currently allows the user to specify the id and url of external repositories, but it doesn't allow any customization of any other settings. I would specifically like to be able to disable the<snapshots>
repository, and to set<updatePolicy>
tonever
in either or both of the snapshot/release repositories.There is a small amount of earlier discussion in https://clojure.atlassian.net/browse/TDEPS-97#icft=TDEPS-97.
Just to make this a little more concrete, here is what I imagine this section of deps.edn might look like:
:mvn/repos {"my-repo" {:url "s3p://my-bucket/maven/" :releases {:update-policy "never"} :snapshots {:enabled false}}}
Alternately, a simpler but less typesafe version could just use a string-to-string map for the snapshot/releases section:
:mvn/repos {"my-repo" {:url "s3p://my-bucket/maven/" :releases {"updatePolicy" "never"} :snapshots {"enabled" "false"}}}