Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- java
- 컬렉션프레임워크
- 인덱스 기본
- 인스턴스
- 멀티쓰레드
- JavaScript
- 친절한 sql튜닝
- 오라클 성능고도화
- SQLP
- db버퍼캐시
- 코딩
- 클라이언트
- socket
- Oracle
- 친절한 SQL 튜닝
- springboot
- Swing
- 자바
- 깃허브
- 오라클
- 백준
- 클래스
- Spring
- 생성자
- 서버
- SQL
- 상속
- 인덱스 range scan
- 카카오코딩테스트
- 메소드
Archives
- Today
- Total
목록mavenCentral (1)
프리 정보 컨텐츠
mavenCentral() vs jcenter() 개념 및 차이점
아래와 같이 springboot gradle 프로젝트를 작업 중에 build.gradle 설정을 해주었습니다. 문득 mavenCentral() 과 jcenter() 두 개의 차이점은 무엇이고 왜 설정해주는 것인가에 대한 근본적인 이유에 대해서 궁금증이 생겨서 정리를 해봐야겠다는 생각이 들었습니다. buildscript { ext { springBootVersion = '2.1.7.RELEASE' } repositories { mavenCentral() jcenter() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply ..
JAVA/Spring
2021. 7. 2. 12:09