[Springboot] mavenCentral()과 jcenter()의 차이점

Jae·2022년 8월 12일
0

Springboot

목록 보기
7/10
repositories {
    mavenCentral()
    jcenter()
}

repositories는 각종 의존성(library)들을 어떤 원격 저장소에서 받을지를 정해준다.
mavenCentral()과 jcenter()는 Android Studio의 Gradle 플러그인 용 저장소이다.

mavenCentral은 이전부터 많이 사용하는 저장소지만, 본인이 만든 라이브러리를 업로드하기 위해서는 많은 과정과 설치가 필요한 문제점이 있었다.
이를 보완하기 위한 라이브러리가 jcenter이다.

jcenter에 라이브러리를 업로드하면 mavenCentral에도 업로드 될 수 있도록 자동화를 할 수 있다.
따라서 jcenter는 최대 java 저장소이고 jcenter를 많이 사용하는 추세이다.

그런데 왜 deprecated 라고 나오지?

References

mavenCentral() vs jcenter()

profile
Jae's Development Area : 재개발구역

0개의 댓글