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 | 29 | 30 |
Tags
- 깃허브
- Swing
- Oracle
- DBA
- Spring
- 메소드
- 오라클
- 클래스
- 인덱스
- 친절한 sql튜닝
- socket
- DB
- SQL
- 인스턴스
- 서버
- SQLP
- 생성자
- 카카오코딩테스트
- Undo
- 백준
- 상속
- springboot
- 인덱스 튜닝
- db버퍼캐시
- 친절한 SQL 튜닝
- 자바
- 클라이언트
- 멀티쓰레드
- java
- 컬렉션프레임워크
Archives
- Today
- Total
목록jcenter (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