Skip to content

Commit

Permalink
chore: properties 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
SunYerim committed Jun 16, 2024
1 parent 2d1f6b5 commit 96aad04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ dependencies {
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
implementation 'commons-codec:commons-codec:1.5'
implementation 'com.auth0:java-jwt:3.13.0'
testImplementation 'com.h2database:h2'
}

dependencyManagement {
Expand Down
5 changes: 5 additions & 0 deletions src/test/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:sunjooAuth;MODE=mysql;
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=create
spring.jpa.properties.hibernate.format_sql=true

0 comments on commit 96aad04

Please sign in to comment.