diff --git a/build.gradle b/build.gradle index 3162c2bf..596ea4a6 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.3.2' + id 'org.springframework.boot' version '3.3.4' id 'io.spring.dependency-management' version '1.1.6' id 'jacoco' } @@ -35,8 +35,8 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-amqp' testImplementation 'org.springframework.amqp:spring-rabbit-test' - annotationProcessor "org.hibernate:hibernate-jpamodelgen:6.5.2.Final" - implementation 'io.hypersistence:hypersistence-utils-hibernate-63:3.8.1' + annotationProcessor "org.hibernate:hibernate-jpamodelgen:6.6.1.Final" + implementation 'io.hypersistence:hypersistence-utils-hibernate-63:3.8.3' // Springdoc for Swagger API Docs implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0' @@ -53,27 +53,27 @@ dependencies { implementation 'cn.apiclub.tool:simplecaptcha:1.2.2' implementation 'com.github.jai-imageio:jai-imageio-core:1.4.0' - implementation 'org.springframework.boot:spring-boot-starter-mail:3.3.2' + implementation 'org.springframework.boot:spring-boot-starter-mail:3.3.4' implementation 'org.apache.commons:commons-text:1.12.0' implementation 'org.thymeleaf:thymeleaf:3.1.2.RELEASE' implementation 'org.thymeleaf:thymeleaf-spring6:3.1.2.RELEASE' - implementation "org.mapstruct:mapstruct:1.5.5.Final" + implementation "org.mapstruct:mapstruct:1.6.2" compileOnly 'org.projectlombok:lombok-mapstruct-binding:0.2.0' - compileOnly 'org.mapstruct:mapstruct:1.5.5.Final' - compileOnly 'org.mapstruct.extensions.spring:mapstruct-spring-annotations:1.1.1' + compileOnly 'org.mapstruct:mapstruct:1.6.2' + compileOnly 'org.mapstruct.extensions.spring:mapstruct-spring-annotations:1.1.2' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0' - annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final' + annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.2' annotationProcessor 'org.projectlombok:lombok' - annotationProcessor 'org.mapstruct.extensions.spring:mapstruct-spring-extensions:1.1.1' - testAnnotationProcessor 'org.mapstruct.extensions.spring:mapstruct-spring-extensions:1.1.1' + annotationProcessor 'org.mapstruct.extensions.spring:mapstruct-spring-extensions:1.1.2' + testAnnotationProcessor 'org.mapstruct.extensions.spring:mapstruct-spring-extensions:1.1.2' developmentOnly 'org.springframework.boot:spring-boot-devtools' - runtimeOnly 'org.postgresql:postgresql:42.7.3' + runtimeOnly 'org.postgresql:postgresql:42.7.4' testImplementation 'org.springframework.boot:spring-boot-starter-test' - testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3' + testImplementation 'org.junit.jupiter:junit-jupiter:5.11.2' testImplementation 'org.mockito:mockito-core:5.+' }