Skip to content

Commit 7369898

Browse files
committed
link fixing
1 parent 1cbde2f commit 7369898

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

content/reference/deps_edn.adoc

+10-15
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Examples:
140140
[[deps_mvn]]
141141
== Maven deps
142142

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.
144144

145145
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`.
146146

@@ -209,8 +209,8 @@ The most common git url protocols are https and ssh. https repos will be accesse
209209

210210
For more information on creating keys and using the ssh-agent to manage your ssh identities, GitHub provides excellent info:
211211

212-
* https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/
213-
* https://help.github.com/articles/working-with-ssh-key-passphrases/
212+
* https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
213+
* https://docs.github.com/en/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases
214214

215215
Other protocols (including local and file) should work but are not commonly used.
216216

@@ -375,7 +375,7 @@ The `:main-opts` are a collection of string options provided to a program starte
375375
[[procurers]]
376376
== Procurer config
377377

378-
[[procurers_mvn]]
378+
[[procurer_mvn]]
379379
=== Maven
380380

381381
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.
405405

406406
`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.
407407

408-
[[procurer_mvn_repos_releases]]
409-
[[procurer_mvn_repos_snapshots]]
410408
==== :releases and :snapshots
411409

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):
413411

414412
[source,clojure]
415413
----
@@ -421,16 +419,13 @@ The `:releases` attribute is optional, but can be used to override the default r
421419
:checksum :fail}}}}
422420
----
423421

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.
425423

426424
Repository attributes:
427425

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`.
434429

435430
Also see <<clojure_cli#procurer_maven,Maven procurer config>> for additional configuration in the Clojure CLI.
436431

@@ -559,4 +554,4 @@ The `:classpath` key is a map where the keys are classpath paths (strings) and t
559554
[[basis_classpath_roots]]
560555
=== :classpath-roots
561556

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

Comments
 (0)