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 | 31 |
Tags
- Swing
- 바인드변수
- 사용자관리프로그램
- 인스턴스
- HTML모드
- socket
- 깃허브
- Oracle
- 자바
- JPA Auditing
- SwingCalendar
- 백준
- 멀티쓰레드
- 클래스
- 카카오코딩테스트
- 클라이언트
- 생성자
- 컬렉션프레임워크
- springboot
- 서버
- jcenter
- springDataJPA
- 템플릿엔진
- 코딩
- java
- mavenCentral
- JavaScript
- 메소드
- 상속
- Spring
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