You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/reference/deps_edn.adoc
+10-15
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@ Examples:
140
140
[[deps_mvn]]
141
141
== Maven deps
142
142
143
-
The Maven procurer uses the qualifier `mvn` and is used to retrieve library artifacts from https://maven.apache.org/[Maven repositories], the standard repository manager in the Java ecosystem. Libraries are downloaded as .jar files and stored in the Maven local repository cache (located in ~/.m2/repository by default or override with <<deps_edn#mvn_localrepo,:mvn/local-repo>>). Other JVM-based tools may also use this cache.
143
+
The Maven procurer uses the qualifier `mvn` and is used to retrieve library artifacts from https://maven.apache.org/[Maven repositories], the standard repository manager in the Java ecosystem. Libraries are downloaded as .jar files and stored in the Maven local repository cache (located in ~/.m2/repository by default or override with <<deps_edn#procurer_mvn_localrepo,:mvn/local-repo>>). Other JVM-based tools may also use this cache.
144
144
145
145
Maven libraries are located in Maven repositories using "Maven coordinates", typically the groupId, artifactId, and version (sometimes also abbreivated as GAV). In deps.edn, the library name is parsed as `groupId/artifactId` and the version is taken from `:mvn/version`. Some Maven artifacts also have a "classifier", which is a variant of a particular artifact. In the Maven procurer, classifiers are included at the end of the lib name, separated by a `$` in this format: `groupId/artifactId$classifier`.
146
146
@@ -209,8 +209,8 @@ The most common git url protocols are https and ssh. https repos will be accesse
209
209
210
210
For more information on creating keys and using the ssh-agent to manage your ssh identities, GitHub provides excellent info:
Other protocols (including local and file) should work but are not commonly used.
216
216
@@ -375,7 +375,7 @@ The `:main-opts` are a collection of string options provided to a program starte
375
375
[[procurers]]
376
376
== Procurer config
377
377
378
-
[[procurers_mvn]]
378
+
[[procurer_mvn]]
379
379
=== Maven
380
380
381
381
The Maven procurer uses the Maven resolver and Maven repository system to download artifacts. This is described further in the <<deps_edn#deps_mvn,Maven deps>> section. Some options can be configured in the deps.edn.
@@ -405,11 +405,9 @@ The `:url` is a string url to the repository root.
405
405
406
406
`http://` urls are not supported by default, but see <<clojure_cli#env_vars>> for information on the `CLOJURE_CLI_ALLOW_HTTP_REPO` if you need this.
407
407
408
-
[[procurer_mvn_repos_releases]]
409
-
[[procurer_mvn_repos_snapshots]]
410
408
==== :releases and :snapshots
411
409
412
-
The `:releases` attribute is optional, but can be used to override the default repository configuration for release (non-snapshot artifacts):
410
+
[[procurer_mvn_repos_releases]]The `:releases` attribute is optional, but can be used to override the default repository configuration for release (non-snapshot artifacts):
413
411
414
412
[source,clojure]
415
413
----
@@ -421,16 +419,13 @@ The `:releases` attribute is optional, but can be used to override the default r
421
419
:checksum :fail}}}}
422
420
----
423
421
424
-
The `:snapshots` attribute is the same as the `:releases` attribute, but applies repository policy for snapshot artifacts.
422
+
[[procurer_mvn_repos_snapshots]]The `:snapshots` attribute is the same as the `:releases` attribute, but applies repository policy for snapshot artifacts.
425
423
426
424
Repository attributes:
427
425
428
-
[[procurer_mvn_repos_enabled]]
429
-
[[procurer_mvn_repos_update]]
430
-
[[procurer_mvn_repos_checksum]]
431
-
* `:enabled` is a boolean, default=true. Sometimes this is used to target a repository only for releases or snapshots.
432
-
* `:update` is a flag for how often to check the repo for updates, valid values are `:daily` (default), `:always`, `:never`, or an interval in minutes (integer).
433
-
* `:checksum` is a flag for checksum validation, one of `:warn` (default), `:fail`, `:ignore`.
426
+
* [[procurer_mvn_repos_enabled]]`:enabled` is a boolean, default=true. Sometimes this is used to target a repository only for releases or snapshots.
427
+
* [[procurer_mvn_repos_update]]`:update` is a flag for how often to check the repo for updates, valid values are `:daily` (default), `:always`, `:never`, or an interval in minutes (integer).
428
+
* [[procurer_mvn_repos_checksum]]`:checksum` is a flag for checksum validation, one of `:warn` (default), `:fail`, `:ignore`.
434
429
435
430
Also see <<clojure_cli#procurer_maven,Maven procurer config>> for additional configuration in the Clojure CLI.
436
431
@@ -559,4 +554,4 @@ The `:classpath` key is a map where the keys are classpath paths (strings) and t
559
554
[[basis_classpath_roots]]
560
555
=== :classpath-roots
561
556
562
-
The `:classpath-roots` key is a vector that orders the classpath (the path strings should match the keys of the `:classpath` key). See the <<clojure_cli#_classpath_construction,Clojure CLI section on classpath construction>> for ordering rules.
557
+
The `:classpath-roots` key is a vector that orders the classpath (the path strings should match the keys of the `:classpath` key). See the <<clojure_cli#_classpath_construction,Clojure CLI section on classpath construction>> for ordering rules.
0 commit comments