Skip to content
Merged
Changes from all commits
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
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,10 @@ flyway {
// configFiles = ['src/test/resources/application-test.properties']
}

bootJar { archiveFileName = 'app.jar' }
bootJar { archiveFileName = 'app.jar' }

// Spring Boot가 실행 불가능한 -plain.jar 파일을 생성하지 않도록 설정합니다.
// 이렇게 하면 build/libs 폴더에는 실행 가능한 Fat JAR 파일 하나만 남게 됩니다.
tasks.named('jar', Jar) {
enabled = false
}