Composer Equivalent in JAVA?

composer-php, java

Solution

The most popular tools for that are: Maven, Ivy, Grape, Gradle, Bundlr, SBT, Leiningen, but they're keeping dependencies for all projects in one folder. Composer keeps dependencies inside a project, in a subdirectory.

You can browse content of main Maven repository: https://mvnrepository.com/

Problem

I currently moving to java from PHP. Is there any tools equivalent like composer in PHP for JAVA? Composer is a command line tools for easily download other library and put that in our local project.

Original source