Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between gradle repository and a maven repository?

I’m trying to create a custom Artifactory repository to resolve dependencies in my gradle project, but I’m confused between gradle and maven repo: what repository key should I choose? And what is the real difference between a gradle repository and a maven repository?

like image 282
khouloud Avatar asked Apr 02 '18 09:04

khouloud


1 Answers

There is no such thing as a Gradle repository.

While Maven is the name for both a build tool and a repository type, Gradle ist just a build tool. It supports both Maven and Ivy repositories.

like image 123
Lukas Körfer Avatar answered Oct 13 '22 08:10

Lukas Körfer