We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 306fb53 commit b2085bbCopy full SHA for b2085bb
build.gradle
@@ -39,6 +39,10 @@ dependencies {
39
// DB
40
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
41
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
42
+ runtimeOnly 'org.postgresql:postgresql'
43
+
44
+ // AWS S3
45
+ implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
46
}
47
48
tasks.named('test') {
src/main/java/com/be/sportizebe/SportizeBeApplication.java
@@ -2,6 +2,7 @@
2
3
import org.springframework.boot.SpringApplication;
4
import org.springframework.boot.autoconfigure.SpringBootApplication;
5
+import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
6
7
@EnableJpaAuditing
8
@SpringBootApplication
0 commit comments