Skip to content

Commit

Permalink
#3 fix: gradle runtimeOnly 속성 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yo0oni committed Jan 11, 2024
1 parent 986e6fe commit 7cb465d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ java {
sourceCompatibility = '17'
}

bootJar{
archivesBaseName = 'howAboutTrip'
archiveFileName = 'howAboutTrip.jar'
archiveVersion = "0.0.1"
}

configurations {
compileOnly {
extendsFrom annotationProcessor
Expand All @@ -27,8 +21,13 @@ repositories {
mavenCentral()
}

bootJar{
archivesBaseName = 'howAboutTrip'
archiveFileName = 'howAboutTrip.jar'
archiveVersion = "0.0.1"
}

dependencies {
runtimeOnly 'mysql:mysql-connector-java'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
Expand Down

0 comments on commit 7cb465d

Please sign in to comment.