I need a command to download jar with all dependencies from maven., I saw this tool online
https://jar-download.com/online-maven-download-tool.php
but I need to do it from cli. Any methods?
I need a command to download jar with all dependencies from maven., I saw this tool online
https://jar-download.com/online-maven-download-tool.php
but I need to do it from cli. Any methods?
You can use the Maven dependency plugin, especially the goals
https://maven.apache.org/plugins/maven-dependency-plugin/copy-dependencies-mojo.html
and
https://maven.apache.org/plugins/maven-dependency-plugin/get-mojo.html
which download the dependencies and the jar, respectively.