HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

cs fetch — Fetch fetches the JARs of dependencies. More information: <https://get-coursier.io/docs/cli-fetch>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thefetchescommanddependenciesclifetchcs fetchjars

Problem

How to use the cs fetch command: Fetch fetches the JARs of dependencies. More information: <https://get-coursier.io/docs/cli-fetch>.

Solution

cs fetch — Fetch fetches the JARs of dependencies. More information: <https://get-coursier.io/docs/cli-fetch>.

Fetch a specific version of a .jar:
cs fetch {{group_id}}:{{artifact_id}}:{{artifact_version}}


Fetch a package and evaluate the classpath corresponding to the selected package in an env var:
CP="$(cs fetch --classpath org.scalameta::scalafmt-cli:latest.release)"


Fetch a source of a specific .jar:
cs fetch --sources {{group_id}}:{{artifact_id}}:{{artifact_version}}


Fetch the javadoc jars:
cs fetch --javadoc {{group_id}}:{{artifact_id}}:{{artifact_version}}


Fetch dependency with javadoc jars and source jars:
cs fetch --default={{true}} --sources --javadoc {{group_id}}:{{artifact_id}}:{{artifact_version}}


Fetch jars coming from dependency files:
cs fetch {{--dependency-file path/to/file1 --dependency-file path/to/file2 ...}}

Code Snippets

Fetch a specific version of a `.jar`

cs fetch {{group_id}}:{{artifact_id}}:{{artifact_version}}

Fetch a package and evaluate the classpath corresponding to the selected package in an env var

CP="$(cs fetch --classpath org.scalameta::scalafmt-cli:latest.release)"

Fetch a source of a specific `.jar`

cs fetch --sources {{group_id}}:{{artifact_id}}:{{artifact_version}}

Fetch the javadoc jars

cs fetch --javadoc {{group_id}}:{{artifact_id}}:{{artifact_version}}

Fetch dependency with javadoc jars and source jars

cs fetch --default={{true}} --sources --javadoc {{group_id}}:{{artifact_id}}:{{artifact_version}}

Context

tldr-pages: common/cs fetch

Revisions (0)

No revisions yet.