-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#1] Gradle 초기설정 #2
Conversation
build.gradle
Outdated
id 'java' | ||
id 'java' // Java 플러그인 추가 (Java 프로젝트로 인식) | ||
id 'org.springframework.boot' version '3.3.4' // Spring Boot 플러그인 추가 | ||
id 'io.spring.dependency-management' version '1.1.6' // Spring 의존성 관리 플러그인 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
build.gradle
Outdated
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
useJUnitPlatform() //JUnit 테스트 플랫폼 사용 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JUnit 5
|
||
java { | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 멀티 프로젝트 구조로 변경해 주시면, 좋을 것 같습니다.
- 필요하지 않은 설정들은 최대한 지우고 진행하는 것이 좋은 것 같습니다.
Quality Gate passedIssues Measures |
설정사항