Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Composer Equivalent in JAVA? [closed]

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.

like image 398
GusDeCooL Avatar asked May 24 '14 10:05

GusDeCooL


1 Answers

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/

like image 143
greenmarker Avatar answered Nov 19 '22 15:11

greenmarker