Skip to content
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

[Spring Core] 최규원 미션 제출합니다. #74

Open
wants to merge 22 commits into
base: kyuwon-choi
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: gradle 변경
Kyuwon-Choi committed Jul 10, 2024
commit 656c61a98777d0ab3ecfbd2a99a55bf6ccc46962
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -22,7 +22,8 @@ dependencies {
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.2'
implementation 'io.jsonwebtoken:jjwt-gson:0.11.2'
implementation 'org.projectlombok:lombok:1.18.22'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.rest-assured:rest-assured:5.3.1'
@@ -33,3 +34,7 @@ dependencies {
test {
useJUnitPlatform()
}

tasks.withType(JavaCompile) {
options.compilerArgs << "-parameters"
}