Skip to content

Commit

Permalink
삭제할 예정
Browse files Browse the repository at this point in the history
  • Loading branch information
shinheekim committed Jul 29, 2024
1 parent e2f99de commit d97bc45
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
//implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
Expand All @@ -42,6 +42,7 @@ dependencies {
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
//aws
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
}

tasks.named('test') {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*
package net.skhu.likelion12thteam03be.config;
import com.amazonaws.auth.AWSCredentials;
Expand Down Expand Up @@ -35,3 +36,4 @@ public AmazonS3 s3Builder() {
.build();
}
}
*/
2 changes: 2 additions & 0 deletions src/main/java/net/skhu/likelion12thteam03be/s3/S3Service.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*
package net.skhu.likelion12thteam03be.s3;
import com.amazonaws.services.s3.AmazonS3;
Expand Down Expand Up @@ -69,3 +70,4 @@ public Optional<File> convert(MultipartFile multipartFile) throws IOException {
return Optional.empty();
}
}
*/
1 change: 0 additions & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ spring:
driver-class-name: ${spring.datasource.driver-class-name}
jpa:
database: mysql
database-platform: org.hibernate.dialect.MySQL8Dialect
hibernate:
ddl-auto: update
show-sql: true
Expand Down

0 comments on commit d97bc45

Please sign in to comment.