diff --git a/backend/build.gradle b/backend/build.gradle index 832acd3..ce1ff1b 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '3.3.6' - id 'io.spring.dependency-management' version '1.1.6' + id 'org.springframework.boot' version '3.4.1' + id 'io.spring.dependency-management' version '1.1.7' id 'java' id 'org.hibernate.orm' } @@ -22,13 +22,13 @@ repositories { dependencies { // Spring Dependencies - implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.3.6' - implementation 'org.springframework.boot:spring-boot-starter-web:3.3.6' - annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.3.6' - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.3.6' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.4.1' + implementation 'org.springframework.boot:spring-boot-starter-web:3.4.1' + annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.4.1' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.1' // Database Connection Dependency - runtimeOnly 'org.postgresql:postgresql:42.7.4' + runtimeOnly 'org.postgresql:postgresql:42.7.5' // Swagger implementation 'io.springfox:springfox-swagger2:3.0.0'