diff --git a/build.gradle b/build.gradle index 1a32a95..43403ce 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'net.researchgate.release' version '3.0.2' - id 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' version '0.0.8' apply false + id 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' version '0.0.17' apply false } subprojects { diff --git a/data-api/build.gradle b/data-api/build.gradle index 1c24a41..cdbf1d7 100644 --- a/data-api/build.gradle +++ b/data-api/build.gradle @@ -1,12 +1,12 @@ plugins { - id 'org.openapi.generator' version '7.0.1' + id 'org.openapi.generator' version '7.10.0' } apply plugin: 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' dependencies { - implementation 'io.swagger.core.v3:swagger-annotations:2.2.22' + implementation 'io.swagger.core.v3:swagger-annotations:2.2.27' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.data:spring-data-commons' implementation 'com.google.code.findbugs:jsr305:3.0.2' diff --git a/data-service/build.gradle b/data-service/build.gradle index 02be09c..5b02dfb 100644 --- a/data-service/build.gradle +++ b/data-service/build.gradle @@ -10,27 +10,27 @@ dependencies { implementation 'uk.gov.laa.ccms.springboot:laa-ccms-spring-boot-starter-auth' //Enable Swagger UI - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0' + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0' implementation files('lib/ojdbc8.jar') compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' - implementation 'org.mapstruct:mapstruct:1.5.5.Final' - annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final' + implementation 'org.mapstruct:mapstruct:1.6.3' + annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.3' testImplementation 'org.springframework.boot:spring-boot-starter-test' - testImplementation 'org.mockito:mockito-core:5.8.0' - testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1' + testImplementation 'org.mockito:mockito-core:5.14.2' + testImplementation 'org.junit.jupiter:junit-jupiter:5.11.4' //Used for integration tests - implementation platform('org.testcontainers:testcontainers-bom:1.19.1') + implementation platform('org.testcontainers:testcontainers-bom:1.20.4') testImplementation 'org.testcontainers:testcontainers' testImplementation 'org.testcontainers:junit-jupiter' testImplementation 'org.testcontainers:oracle-xe' - testImplementation 'org.hibernate:hibernate-core:6.3.1.Final' - testImplementation 'com.h2database:h2:2.2.224' + testImplementation 'org.hibernate:hibernate-core:6.6.3.Final' + testImplementation 'com.h2database:h2:2.3.232' } test {