티스토리 뷰
gradle 버전업에 따라 deprecated된 설정들이 있어 개선해보기
개선 및 확인 사항
Deprecated API 사용
- compile과 testCompile은 Gradle 5.0부터 deprecated되었으며, implementation과 testImplementation을 사용
- compile은 다른 모듈에 노출된다. 나중에 모듈을 분리할 때 다른 모듈의 의존성을 사용에서 오는 문제가 발생 가능함
- Impliementation은 다른 모듈에 노출되지 않음
- jcenter는 더 이상 지원하지 않음
- apply plugin 대신 plugins 블럭 권장
apply plugin 대신 plugins 사용
- 현대 Gradle DSL에서는 apply plugin보다는 plugins 블록을 사용하는 것이 권장
AS-IS
buildscript {
ext {
springBootVersion = '2.1.9.RELEASE'
}
repositories {
mavenCentral()
// deprecataed됨
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
TO-BE
/*
apply -> Plugins 적용
- 명시적으로 버전 선언
- 의존성 자동완성 확인가능
- Gradle 5.0 이상부터는 plugins 블록이 권장됨
*/
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.1'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'com.hj'
version = '1.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_17 // Spring Boot 3.x 이상에서는 Java 17 필요
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral() // Maven Central Repository
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}
'Spring' 카테고리의 다른 글
Spring Security Oauth2.0 설정 (진행중) (0) | 2025.01.09 |
---|---|
SpringFramework에서 property 파일 읽어오기 (0) | 2022.08.22 |
[Spring] Caused by: java.lang.IllegalStateException: Ambiguous mapping 에러 (0) | 2022.08.13 |
[Spring] spring의 application.properties 간단 개념 (0) | 2021.12.18 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Brainf**k 인터프리터
- 124 나라의 숫자
- 2019 카카오 공채
- DP
- programmers
- 후보키
- 게리맨더링 2
- 라면공장
- 단체사진 찍기
- 카카오 2020 공채
- 17825
- 17779
- 문자열을 정수로 바꾸기
- java
- 3954
- 프로그래머스
- 괄호 변환
- 주사위 윷놀이
- 찾아라 프로그래밍 마에스터
- 가장 큰 정사각형 찾기
- 티스토리챌린지
- 2018 카카오 공채
- 큰 수 만들기
- 정수 내림차순으로 배치하기
- 오블완
- 투포인터
- 자바
- 백준
- 카카오2020 공채
- 짝지어 제거하기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함