Skip to content

Commit

Permalink
#1 [build] gradle 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeorinY committed Oct 16, 2023
1 parent 7fd6e05 commit 2228fd0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 4 additions & 0 deletions application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ jar {enabled = true}

dependencies {
implementation project(':library')

runtimeOnly "io.jsonwebtoken:jjwt-impl:${jjwtVersion}"
runtimeOnly "io.jsonwebtoken:jjwt-jackson:${jjwtVersion}"
implementation "io.jsonwebtoken:jjwt-api:${jjwtVersion}"
}
6 changes: 1 addition & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,15 @@ subprojects {
dependencies {
// Health Check
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

implementation 'org.springframework.boot:spring-boot-starter-aop'

implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'

runtimeOnly "io.jsonwebtoken:jjwt-impl:${jjwtVersion}"
runtimeOnly "io.jsonwebtoken:jjwt-jackson:${jjwtVersion}"
implementation "io.jsonwebtoken:jjwt-api:${jjwtVersion}"

compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

Expand Down
3 changes: 1 addition & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ include(
'application',
'library',
'persistence'
)

)

0 comments on commit 2228fd0

Please sign in to comment.